示例#1
0
文件: CompraBL.cs 项目: joedayz/joerp
 public IList <Transaccion> GetAllByEmpresaSucursal(int idEmpresa, int idSucursal)
 {
     try
     {
         return(repository.GetAllByEmpresaSucursal(idEmpresa, idSucursal));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }