Пример #1
0
        private IEnumerable <FactoryExpense> GetAllFactoryExpensesForABatch(long batchId)
        {
            var results = _factoryExpenseService.GetAllFactoryExpensesForAParticularBatch(batchId);

            return(results);
        }
Пример #2
0
 public IEnumerable <FactoryExpense> GetAllFactoryExpensesForAParticularBatch(long batchId)
 {
     return(_factoryExpenseService.GetAllFactoryExpensesForAParticularBatch(batchId));
 }