コード例 #1
0
ファイル: VentaBL.cs プロジェクト: joedayz/joerp
 public List <Comun> GetNumerosOrdenCompraAprobados(int idEmpresa, int idSucursal, int idSerie, int estado)
 {
     try
     {
         return(repository.GetNumerosOrdenPedidoAprobados(idEmpresa, idSucursal, idSerie, estado));
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }