Add constructor for GetQuery
This commit is contained in:
parent
f1ccd7de64
commit
9b31bd61a3
|
@ -2,6 +2,13 @@
|
||||||
|
|
||||||
public class GetQuery : IQuery
|
public class GetQuery : IQuery
|
||||||
{
|
{
|
||||||
|
public GetQuery(string table, string select, string where)
|
||||||
|
{
|
||||||
|
Table = table;
|
||||||
|
Select = select;
|
||||||
|
Where = where;
|
||||||
|
}
|
||||||
|
|
||||||
public string Table { get; set; }
|
public string Table { get; set; }
|
||||||
public string Select { get; set; }
|
public string Select { get; set; }
|
||||||
public string Where { get; set; }
|
public string Where { get; set; }
|
||||||
|
|
Loading…
Reference in New Issue