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

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