diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/Pagamento.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/Pagamento.cs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/Pagamento.cs b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/Pagamento.cs new file mode 100644 index 0000000..2d8a0b3 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Pagamento/Pagamento.cs @@ -0,0 +1,38 @@ +using Gestor.Model.Domain.Relatorios;
+using System;
+using System.Collections.ObjectModel;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.Relatorios.Pagamento
+{
+ public class Pagamento
+ {
+ public ObservableCollection<DadosRelatorio> Dados
+ {
+ get;
+ set;
+ }
+
+ public ObservableCollection<Gestor.Model.Domain.Relatorios.Sintetico> Sintetico
+ {
+ get;
+ set;
+ }
+
+ public string Title
+ {
+ get;
+ set;
+ }
+
+ public AgrupamentoVendedor Vendedores
+ {
+ get;
+ set;
+ }
+
+ public Pagamento()
+ {
+ }
+ }
+}
\ No newline at end of file |