示例#1
0
文件: Program.cs 项目: war-man/Scuola
 public bool ApplyRent(Rent rent)
 {
     if (isValid(rent))
     {
         apply(rent);
         Rented?.Invoke(this, getRentedMessage());
         return(true);
     }
     else
     {
         return(false);
     }
 }
示例#2
0
 protected virtual void OnRented(EventArgs e)
 {
     Rented?.Invoke(this, e);
 }