-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDevelopmentProceduresCollection.cs
More file actions
83 lines (68 loc) · 3.03 KB
/
Copy pathDevelopmentProceduresCollection.cs
File metadata and controls
83 lines (68 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
using Dapper;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Bss.Entities
{
public class DevelopmentProceduresCollection : ProceduresCollection
{
public override void CallProcedure<T>(T cpm, int? commandTimeOut = null)
{
throw new NotImplementedException();
}
public override void CallProcedure(string storedProcedureName, DynamicParameters parameter, int? timeOut = null)
{
throw new NotImplementedException();
}
public override Task CallProcedureAsync<T>(T cpm, int? commandTimeOut = null)
{
throw new NotImplementedException();
}
public override Task CallProcedureAsync(string storedProcedureName, DynamicParameters parameter, int? timeOut = null)
{
throw new NotImplementedException();
}
public override void CallRequest<T>(ref T cpm, int? timeOut = null)
{
throw new NotImplementedException();
}
public override TOut CallRequestResponse<T, TOut>(T cpm, int? timeOut = null, Func<T, TOut> mapFunc = null)
{
throw new NotImplementedException();
}
public async override Task<TOut> CallRequestResponseAsync<T, TOut>(T cpm, int? timeOut = null)
{
throw new NotImplementedException();
}
public override TOut CallRequestResponseModelTemplated<T, TOut>(T cpm, int? timeOut = null)
{
throw new NotImplementedException();
}
public override Task<TOut> CallRequestResponseModelTemplatedAsync<T, TOut>(T cpm, int? timeOut = null)
{
throw new NotImplementedException();
}
public override (TOutCallModel Result, IEnumerable<dynamic> ResultSet) CallRequestResponseQuery<TInCallModel, TOutCallModel>(TInCallModel inCallModel, int? timeOut = null)
{
throw new NotImplementedException();
}
#region [CallRequestResponseQuery]
public override IEnumerable<TOut> CallRequestResponseQuery<T, TOut>(T cpm, Func<object, TOut> mapper, int? timeOut = null)
{
throw new NotImplementedException();
}
public override IEnumerable<TOut> CallRequestResponseQuery<TInCallModel, TOutCallModel, TOut>(TInCallModel inCallModel, out TOutCallModel outCallModel, Func<dynamic, TOut> mapper, int? timeOut = null)
{
throw new NotImplementedException();
}
public override IEnumerable<TResOut> CallRequestResponseQuery<TInCallModel, TOutCallModel, TProcOut, TResOut>(TInCallModel inCallModel, out TOutCallModel outCallModel, Func<TProcOut, TResOut> mapper = null, int? timeOut = null)
{
throw new NotImplementedException();
}
public override IEnumerable<dynamic> CallRequestResponseQuery<TInCallModel, TOutCallModel>(TInCallModel inCallModel, out TOutCallModel outCallModel, int? timeOut = null)
{
throw new NotImplementedException();
}
#endregion
}
}