Example #1
0
 /// <summary>
 /// Edit action
 /// </summary>
 public override void Edit()
 {
     var rentEditWindow = new RentEditWindow(this, SelectedRent);
     rentEditWindow.Show();
 }
Example #2
0
 /// <summary>
 /// Add action
 /// </summary>
 public override void Add()
 {
     var rentEditWindow = new RentEditWindow(this, null);
     rentEditWindow.Show();
 }