Ejemplo n.º 1
0
 public int Delete(int Id)
 {
     if (string.IsNullOrWhiteSpace(Id.ToString()))
     {
         return(0);
     }
     else
     {
         return(_transactionItemRepository.Delete(Id));
     }
     //throw new NotImplementedException();
 }
 public int Delete(int id)
 {
     return(_transactionItemRepository.Delete(id));
 }