public async Task <Course> Update(int id, Course entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
 public Venue Update(int id, Venue entity)
 {
     return(_nonQueryDataService
            .Update(id, entity).Result);
 }
 public async Task <User> Update(int id, User entity) => await _nonQueryDataService.Update(id, entity);
 public TighteningRepairModel Update(TighteningRepairModel entity)
 {
     entity.LastUpdateDate = DateTime.Now;
     return(_nonQueryDataService.Update(entity.Id, entity));
 }
Exemple #5
0
 public async Task <Part> Update(int id, Part entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
 public CameraResultModel Update(CameraResultModel entity)
 {
     entity.LastUpdateDate = DateTime.Now;
     return(_nonQueryDataService.Update(entity.Id, entity));
 }
 public async Task <Consultation> Update(int id, Consultation entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
Exemple #8
0
 public async Task <int> Update(T entity)
 {
     return(await _nonQueryDataService.Update(entity));
 }
 public PartAssemblyModel Update(PartAssemblyModel entity)
 {
     entity.LastUpdateDate = DateTime.Now;
     return(_nonQueryDataService.Update(entity.Id, entity));
 }
 public Task <Attendance> Update(int id, Attendance entity)
 {
     return(_nonQueryDataService.Update(id, entity));
 }
 public async Task <T> Update(int id, T entity)
 {
     return(await nonQueryDataService.Update(id, entity));
 }
Exemple #12
0
 public async Task <Booking> Update(int id, Booking entity)
 {
     return(await nonQueryDataService.Update(id, entity));
 }
 public async Task <Reservation> Update(int id, Reservation entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
 public async Task <Address> Update(int id, Address entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
 public async Task <Category> Update(int id, Category entity)
 {
     return(await nonQueryDataService.Update(id, entity));
 }
 public TraceabilityLogModel Update(TraceabilityLogModel entity)
 {
     entity.LastUpdateDate = DateTime.Now;
     return(_nonQueryDataService.Update(entity.Id, entity));
 }
 public async Task <Specialization> Update(int id, Specialization entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
 public async Task <Color> Update(int id, Color entity) => await _nonQueryDataService.Update(id, entity);
Exemple #19
0
 public Task <Student> Update(int id, Student entity)
 {
     return(_nonQueryDataService.Update(id, entity));
 }
 public async Task <User> Update(int id, User entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
Exemple #21
0
 public async Task <Account> Update(int id, Account entity)
 {
     return(await _nonQueryDataService.Update(id, entity));
 }
 public MachineModel Update(MachineModel entity)
 {
     entity.LastUpdateDate = DateTime.Now;
     return(_nonQueryDataService.Update(entity.Id, entity));
 }
 public async Task <Schedule> Update(int id, Schedule entity)
 {
     return(await _scheduleNonQueryDataService.Update(id, entity));
 }