Esempio n. 1
0
 public async Task DeleteDriverAsync(Driver theDriver)
 {
     await ConnectionAsync.DeleteAsync(theDriver.ToDTO());
 }
Esempio n. 2
0
 public async Task DeleteLocationAsync(Location theLocation)
 {
     await ConnectionAsync.DeleteAsync(theLocation.ToDTO());
 }
Esempio n. 3
0
 public async Task DeleteAutomobileAsync(Automobile theAutomobile)
 {
     await ConnectionAsync.DeleteAsync(theAutomobile.ToDTO());
 }
 public async Task DeleteUserAsync(User theUser)
 {
     await ConnectionAsync.DeleteAsync(theUser.ToDTO());
 }
 public async Task DeleteRentalAgreementAsync(RentalAgreement theRentalAgreement)
 {
     await ConnectionAsync.DeleteAsync(theRentalAgreement);
 }
Esempio n. 6
0
 public async Task DeleteCustomerAsync(Customer theCustomer)
 {
     await ConnectionAsync.DeleteAsync(theCustomer.ToDTO());
 }
 public async Task DeleteRenterAsync(Renter theRenter)
 {
     await ConnectionAsync.DeleteAsync(theRenter.ToDTO());
 }