private ICostsCarWashAndDeteyling _costsCarWashAndDeteyling;     // Расходы мойка и детейлин

        public AllExpensesModulescs(IUtilityCosts utilityCosts, IOtherExpenses otherExpenses, ICostsCarWashAndDeteyling costsCarWashAndDeteyling)
        {
            _utilityCosts             = utilityCosts;
            _otherExpenses            = otherExpenses;
            _costsCarWashAndDeteyling = costsCarWashAndDeteyling;
        }
Exemple #2
0
 public OtherExpensesController(IOtherExpenses otherExpenses, IExpenseCategory expenseCategory)
 {
     _otherExpenses   = otherExpenses;
     _expenseCategory = expenseCategory;
 }