diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Common/SqlQueryCondition.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.Common/SqlQueryCondition.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Common/SqlQueryCondition.cs b/Codemerx/Gestor.Model/Model.Common/SqlQueryCondition.cs new file mode 100644 index 0000000..fcf3138 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.Common/SqlQueryCondition.cs @@ -0,0 +1,26 @@ +using System;
+using System.Collections.Generic;
+using System.Data.SqlClient;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Common
+{
+ public class SqlQueryCondition
+ {
+ public string Condicao
+ {
+ get;
+ set;
+ }
+
+ public List<SqlParameter> Parametros
+ {
+ get;
+ set;
+ }
+
+ public SqlQueryCondition()
+ {
+ }
+ }
+}
\ No newline at end of file |