client/src/Iri.Modernisation.Controls/ViewModel/ProductionView/ProductionViewVM.cs
equal
deleted
inserted
replaced
|
1 using System; |
|
2 using System.Net; |
|
3 using System.Windows; |
|
4 using System.Windows.Controls; |
|
5 using System.Windows.Documents; |
|
6 using System.Windows.Ink; |
|
7 using System.Windows.Input; |
|
8 using System.Windows.Media; |
|
9 using System.Windows.Media.Animation; |
|
10 using System.Windows.Shapes; |
|
11 using Iri.Modernisation.BaseMVVM.Commands; |
|
12 using Iri.Modernisation.BaseMVVM.ViewModel; |
|
13 namespace Iri.Modernisation.Controls.ViewModel |
|
14 { |
|
15 public class ProductionViewVM : BaseMVVM.ViewModel.ViewModel |
|
16 { |
|
17 private HeaderProductionVM _headerProductionVM; |
|
18 public HeaderProductionVM ViewModelHeaderProduction |
|
19 { |
|
20 get |
|
21 { |
|
22 return _headerProductionVM; |
|
23 } |
|
24 set |
|
25 { |
|
26 _headerProductionVM = value; |
|
27 OnPropertyChanged("ViewModelHeaderProduction"); |
|
28 } |
|
29 } |
|
30 private ProductionTimeLineVM _productionTimeLineVM; |
|
31 public ProductionTimeLineVM ViewModelProductionTimeLine |
|
32 { |
|
33 get |
|
34 { |
|
35 return _productionTimeLineVM; |
|
36 } |
|
37 set |
|
38 { |
|
39 _productionTimeLineVM = value; |
|
40 OnPropertyChanged("ViewModelProductionTimeLine"); |
|
41 } |
|
42 } |
|
43 |
|
44 public ProductionViewVM() |
|
45 { |
|
46 ViewModelHeaderProduction = new HeaderProductionVM(); |
|
47 ViewModelProductionTimeLine = new ProductionTimeLineVM(); |
|
48 } |
|
49 } |
|
50 } |