示例#1
0
 public UpdateManySeries(TrackedViewModel main)
 {
     if (main == null)
     {
         throw new ArgumentNullException("UpdateManySeries command");
     }
     this.main = main;
 }
示例#2
0
 public ShowSelectedSeries(TrackedViewModel main)
 {
     if (main == null)
     {
         throw new ArgumentNullException("ShowSelectedSeries command");
     }
     this.main = main;
 }
示例#3
0
 public ClearDatabase(TrackedViewModel main)
 {
     if (main == null)
     {
         throw new ArgumentNullException("ClearDatabase command");
     }
     this.main = main;
 }