markus / ConvertService / ServiceBase / Markus.Service.DataBase.Dapper / sqlParameter.cs @ 0a64fa85
이력 | 보기 | 이력해설 | 다운로드 (534 Bytes)
1 | a5e5fff6 | taeseongkim | using System; |
---|---|---|---|
2 | using System.Collections.Generic; |
||
3 | using System.Data; |
||
4 | using System.Linq; |
||
5 | using System.Text; |
||
6 | using System.Threading.Tasks; |
||
7 | |||
8 | namespace Markus.Service.DataBase |
||
9 | { |
||
10 | public class sqlParameter |
||
11 | { |
||
12 | public sqlParameter(string name, object value, DbType? dbType) |
||
13 | { |
||
14 | this.Name = name; |
||
15 | this.Value = value; |
||
16 | this.DbType = dbType; |
||
17 | } |
||
18 | |||
19 | public string Name { get; set; } |
||
20 | public object Value { get; set; } |
||
21 | public DbType? DbType { get; set; } |
||
22 | } |
||
23 | } |