blob: e93e9ffbc435334bcb1d5e0ac3ff04a5771b5bd4 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
using Gestor.Model.Common;
using System;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Gestor.Model.Domain.Relatorios
{
public class StatusRelatorio : INotifyPropertyChanged
{
private bool _selecionado;
public int Id
{
get;
set;
}
public bool Selecionado
{
get
{
return this._selecionado;
}
set
{
if (value == this._selecionado)
{
return;
}
this._selecionado = value;
this.OnPropertyChanged("Selecionado");
}
}
public TipoSeguro Status
{
get;
set;
}
public StatusRelatorio()
{
}
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChangedEventHandler propertyChangedEventHandler = this.PropertyChanged;
if (propertyChangedEventHandler == null)
{
return;
}
propertyChangedEventHandler(this, new PropertyChangedEventArgs(propertyName));
}
public event PropertyChangedEventHandler PropertyChanged;
}
}
|