Example #1
0
 public Operacion Add(Operacion operacion)
 {
     try
     {
         return(repository.Add(operacion));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
Example #2
0
 public Operacion Add(Operacion operacion)
 {
     return(_repo.Add(operacion));
 }