Пример #1
0
 public async Task UpdateDriverAsync(Driver theDriver)
 {
     await ConnectionAsync.UpdateAsync(theDriver.ToDTO());
 }
Пример #2
0
 public async Task UpdateLocationAsync(Location theLocation)
 {
     await ConnectionAsync.UpdateAsync(theLocation.ToDTO());
 }
Пример #3
0
 public async Task UpdateAutomobileAsync(Automobile theAutomobile)
 {
     await ConnectionAsync.UpdateAsync(theAutomobile.ToDTO());
 }
Пример #4
0
 public async Task UpdateUserAsync(User theUser)
 {
     await ConnectionAsync.UpdateAsync(theUser.ToDTO());
 }
 public async Task UpdateRentalAgreementAsync(RentalAgreement theRentalAgreement)
 {
     await ConnectionAsync.UpdateAsync(theRentalAgreement);
 }
Пример #6
0
 public async Task UpdateCustomerAsync(Customer theCustomer)
 {
     await ConnectionAsync.UpdateAsync(theCustomer.ToDTO());
 }
 public async Task UpdateRenterAsync(Renter theRenter)
 {
     await ConnectionAsync.UpdateAsync(theRenter.ToDTO());
 }