12
12
13
13
namespace PrismUnityDemo . ViewModel
14
14
{
15
- public class ProductDetailViewModel : BindableBase , INavigationAware , IActiveAware , IProductDetailViewModel
15
+ public class ProductDetailViewModel : BindableBase , INavigationAware , IActiveAware , IProductDetailViewModel , IDisposable
16
16
{
17
17
public ProductDetailViewModel ( )
18
18
{
@@ -37,7 +37,7 @@ public Product Product
37
37
38
38
public IRegionManager SubRegionManager { get ; private set ; }
39
39
40
- private Repository repository { get ; set ; }
40
+ private IRepository repository { get ; set ; }
41
41
42
42
public bool IsNavigationTarget ( NavigationContext navigationContext )
43
43
{
@@ -83,7 +83,7 @@ public bool IsActive
83
83
84
84
[ InjectionMethod ]
85
85
public void OnInitialization ( IEventAggregator eventAggregator , GlobalCommands globalCommands ,
86
- Repository repository )
86
+ IRepository repository )
87
87
{
88
88
this . eventAggregator = eventAggregator ;
89
89
this . globalCommands = globalCommands ;
@@ -93,5 +93,40 @@ public void OnInitialization(IEventAggregator eventAggregator, GlobalCommands gl
93
93
this . globalCommands . PrintAll . RegisterCommand ( this . PrintCommand ) ;
94
94
this . globalCommands . Close . RegisterCommand ( this . CloseCommand ) ;
95
95
}
96
+
97
+ private bool disposed = false ;
98
+
99
+ public void Dispose ( )
100
+ {
101
+ // TODO: Check this.disposed in all public, protected, and protected internal members!
102
+
103
+ this . Dispose ( true ) ;
104
+ }
105
+
106
+ private void Dispose ( bool disposing )
107
+ {
108
+ if ( ! this . disposed )
109
+ {
110
+ // Cleanup unmanaged resources here
111
+
112
+ // Cleanup commands
113
+ this . globalCommands . Print . UnregisterCommand ( this . PrintCommand ) ;
114
+ this . globalCommands . PrintAll . UnregisterCommand ( this . PrintCommand ) ;
115
+ this . globalCommands . Close . UnregisterCommand ( this . CloseCommand ) ;
116
+
117
+ if ( disposing )
118
+ {
119
+ // Cleanup managed resources
120
+ }
121
+
122
+ GC . SuppressFinalize ( this ) ;
123
+ this . disposed = true ;
124
+ }
125
+ }
126
+
127
+ ~ ProductDetailViewModel ( )
128
+ {
129
+ this . Dispose ( false ) ;
130
+ }
96
131
}
97
132
}
0 commit comments