public ReportingStructureController(ILogger <EmployeeController> logger, IReportingStructureService reportingStructureService, IEmployeeService employeeService)
 {
     _logger = logger;
     _reportingStructureService = reportingStructureService;
     _employeeService           = employeeService;
 }
예제 #2
0
 public ReportingStructureController(ILogger <ReportingStructureController> logger, IReportingStructureService reportingStructureService)
 {
     _logger = logger;
     _reportingStructureService = reportingStructureService;
 }
 public ReportingStructure(ILogger <ReportingStructure> logger, IReportingStructureService reportingService)
 {
     _logger           = logger;
     _reportingService = reportingService;
 }