blob: 4e179a7ecdb81cc91ec1e7cfe3b0304ac283e1ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using Gestor.Model.Domain.Relatorios;
using Gestor.Model.Domain.Seguros;
using LiveCharts;
namespace Gestor.Application.Model;
public class SinteticoSource : INotifyPropertyChanged
{
public bool Mostrar { get; set; }
public string Titulo { get; set; }
public ObservableCollection<ValorSintetico> Lista { get; set; }
public SeriesCollection Colecao { get; set; }
public string Quantidade { get; set; }
public string Valor { get; set; }
public List<Documento> Documentos { get; set; }
public List<Parcela> Parcelas { get; set; }
public List<Cliente> Clientes { get; set; }
public DateTime? DateStart { get; set; }
public DateTime? DateFinal { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged([CallerMemberName] string name = "")
{
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
}
}
|