public CommonMealMapper(ITimeFormatter timeFormatter, ICommonMealRegistrationGroupFactory registrationGroupFactory, ICommonMealRegistrationMapper commonMealRegistrationMapper, ICommonMealChefMapper commonMealChefMapper, ITimeProvider timeProvider)
 {
     _timeFormatter                = timeFormatter;
     _registrationGroupFactory     = registrationGroupFactory;
     _commonMealRegistrationMapper = commonMealRegistrationMapper;
     _commonMealChefMapper         = commonMealChefMapper;
     _timeProvider = timeProvider;
 }
 public CommonMealRegistrationController(ICommonMealRegistrationMapper commonMealRegistrationMapper, ICommonMealRegistrationService commonMealRegistrationService)
 {
     _commonMealRegistrationMapper = commonMealRegistrationMapper;
     _commonMealRegistrationService = commonMealRegistrationService;
 }