public DepartmentController(IDepartmentSvc deptSvc, ILogSvc logger)
 {
     _deptSvc = deptSvc;
     //_configSvc = configSvc;
     _logger = logger;
 }
Пример #2
0
 public DepartmentController(IDepartmentSvc _departmentSvc)
 {
     this._departmentSvc = _departmentSvc;
 }