コード例 #1
0
ファイル: ShiftService.cs プロジェクト: Vin2454/samples
		public ShiftService(
			ILogger<IShiftRepository> logger,
			IShiftRepository shiftRepository,
			IApiShiftRequestModelValidator shiftModelValidator,
			IBOLShiftMapper bolshiftMapper,
			IDALShiftMapper dalshiftMapper,
			IBOLEmployeeDepartmentHistoryMapper bolEmployeeDepartmentHistoryMapper,
			IDALEmployeeDepartmentHistoryMapper dalEmployeeDepartmentHistoryMapper)
			: base(logger,
			       shiftRepository,
			       shiftModelValidator,
			       bolshiftMapper,
			       dalshiftMapper,
			       bolEmployeeDepartmentHistoryMapper,
			       dalEmployeeDepartmentHistoryMapper)
		{
		}
コード例 #2
0
 public AbstractShiftService(
     ILogger logger,
     IShiftRepository shiftRepository,
     IApiShiftRequestModelValidator shiftModelValidator,
     IBOLShiftMapper bolShiftMapper,
     IDALShiftMapper dalShiftMapper,
     IBOLEmployeeDepartmentHistoryMapper bolEmployeeDepartmentHistoryMapper,
     IDALEmployeeDepartmentHistoryMapper dalEmployeeDepartmentHistoryMapper)
     : base()
 {
     this.ShiftRepository     = shiftRepository;
     this.ShiftModelValidator = shiftModelValidator;
     this.BolShiftMapper      = bolShiftMapper;
     this.DalShiftMapper      = dalShiftMapper;
     this.BolEmployeeDepartmentHistoryMapper = bolEmployeeDepartmentHistoryMapper;
     this.DalEmployeeDepartmentHistoryMapper = dalEmployeeDepartmentHistoryMapper;
     this.logger = logger;
 }