blob: 0d5a5f0885babf8f6938cdfe3fa54dc0bf5d4dce (
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
59
60
61
62
63
64
65
66
67
68
69
70
|
using Gestor.Application.ViewModels.Generic;
using LiveCharts;
using System;
namespace Gestor.Application.ViewModels.BI
{
public class BISeriesViewModel : BaseSegurosViewModel
{
private int _indice;
private string _titulo;
private SeriesCollection _serie;
public int Indice
{
get
{
return this._indice;
}
set
{
if (this._indice == value)
{
return;
}
this._indice = value;
base.OnPropertyChanged("Indice");
}
}
public SeriesCollection Serie
{
get
{
return this._serie;
}
set
{
if ((object)this._serie == (object)value)
{
return;
}
this._serie = value;
base.OnPropertyChanged("Serie");
}
}
public string Titulo
{
get
{
return this._titulo;
}
set
{
if (this._titulo == value)
{
return;
}
this._titulo = value;
base.OnPropertyChanged("Titulo");
}
}
public BISeriesViewModel()
{
}
}
}
|