Exemplo n.º 1
0
 public CreateLearningDayOperation(IAuthorizationContext authorizationContext,
                                   ILearningDayRepository learningDayRepository,
                                   IGetRemainingLimitsForQuarterOperation getRemainingLimitsForQuarterOperation)
 {
     _authorizationContext  = authorizationContext;
     _learningDayRepository = learningDayRepository;
     _getRemainingLimitsForQuarterOperation = getRemainingLimitsForQuarterOperation;
 }
Exemplo n.º 2
0
 public GetLimitsOperation(IAuthorizationContext authorizationContext,
                           ILimitRepository limitRepository,
                           IGetRemainingLimitsForQuarterOperation getRemainingLimitsForQuarterOperation)
 {
     _authorizationContext = authorizationContext;
     _limitRepository      = limitRepository;
     _getRemainingLimitsForQuarterOperation = getRemainingLimitsForQuarterOperation;
 }