Ejemplo n.º 1
0
 public void DeleteFromMyRentTable(int rId)
 {
     if (DatabaseLinker.DeleteTakepartin(pId, rId))
     {
         RentTable = DatabaseLinker.GetPersonRentTable(pid);
     }
 }
Ejemplo n.º 2
0
 public void AddToMyRentTable(int rId)
 {
     if (DatabaseLinker.AddTakepartin(pId, rId))
     {
         RentTable = DatabaseLinker.GetPersonRentTable(pid);
     }
 }
Ejemplo n.º 3
0
 public override void GetMyRentTable()
 {
     RentTable = DatabaseLinker.GetPersonRentTable(pid);
 }