コード例 #1
0
ファイル: OperacionBL.cs プロジェクト: joedayz/joerp
 public Operacion Add(Operacion operacion)
 {
     try
     {
         return(repository.Add(operacion));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
コード例 #2
0
 public Operacion Add(Operacion operacion)
 {
     return(_repo.Add(operacion));
 }