Add constructor for GetQuery

This commit is contained in:
j4ck 2022-06-02 01:29:48 +03:00
parent f1ccd7de64
commit 9b31bd61a3
1 changed files with 7 additions and 0 deletions

View File

@ -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; }