Exemple #1
0
 public void Delete(Leave leave)
 {
     try
     {
         leaveRepository.Delete(leave);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #2
0
 public DbResult Delete(string id)
 {
     return(repo.Delete(id));
 }