Exemple #1
0
 public EmployeeController(IEmployeeService _employeeService, IDepartamentService _departamentService, ISalaryTabulatorService _salaryTabulatorService)
 {
     this._employeeService        = _employeeService;
     this._departamentService     = _departamentService;
     this._salaryTabulatorService = _salaryTabulatorService;
     sb = new StringBuilder();
 }
 public AccountController(IAccountService accountService, ITransactionService transactionService,
                          ICountryCurrencyCodeService countryCurrencyCodeService, IDepartamentService departamentService,
                          UserManager <ApplicationUser> userManager)
 {
     _accountService             = accountService;
     _transactionService         = transactionService;
     _userManager                = userManager;
     _countryCurrencyCodeService = countryCurrencyCodeService;
     _departamentService         = departamentService;
 }
 public DepartamentController(IDepartamentService departamentService)
 {
     _departamentService = departamentService;
 }
Exemple #4
0
 public ConfigController(IPaymentService _paymentService, IDepartamentService _departamentService)
 {
     this._paymentService     = _paymentService;
     this._departamentService = _departamentService;
     sb = new StringBuilder();
 }
Exemple #5
0
 public EmployeeController()
 {
     _employeeService    = new EmployeeService();
     _departamentService = new DepartamentService();
 }