private IEnumerable <OtherExpense> GetAllOtherExpensesForABatch(long batchId)
        {
            var results = _otherExpenseService.GetAllOtherExpensesForAParticularBatch(batchId);

            return(results);
        }
 public IEnumerable <OtherExpense> GetAllOtherExpensesForAParticularBatch(long batchId)
 {
     return(_otherExpenseService.GetAllOtherExpensesForAParticularBatch(batchId));
 }