Exemple #1
0
 public bool Update(int id, HandoverVM handoverVM)
 {
     if (string.IsNullOrWhiteSpace(handoverVM.Id.ToString()))
     {
         return(status);
     }
     else
     {
         return(iHandoverRepository.Update(id, handoverVM));
     }
 }
 public bool Update(int id, HandoverVM handoverVM)
 {
     return(iHandoverRepository.Update(id, handoverVM));
 }