コード例 #1
0
 public async Task <bool> UpdateFuelSupply(FuelSupply fuelSupply)
 {
     _fuelSupplyContext.Update(fuelSupply);
     return(await Save());
 }
コード例 #2
0
 public async Task <bool> UpdateVehicle(Vehicle Vehicle)
 {
     _vehicleContext.Update(Vehicle);
     return(await Save());
 }