Browse Source

Add constructor for GetQuery

master
j4ck 2 years ago
parent
commit
9b31bd61a3
  1. 7
      RSND/Core/Querying/Queries/GetQuery.cs

7
RSND/Core/Querying/Queries/GetQuery.cs

@ -2,6 +2,13 @@
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 Select { get; set; }
public string Where { get; set; }
Loading…
Cancel
Save