Пример #1
0
 public CommonMealMapper(ITimeFormatter timeFormatter, ICommonMealRegistrationGroupFactory registrationGroupFactory, ICommonMealRegistrationMapper commonMealRegistrationMapper, ICommonMealChefMapper commonMealChefMapper, ITimeProvider timeProvider)
 {
     _timeFormatter                = timeFormatter;
     _registrationGroupFactory     = registrationGroupFactory;
     _commonMealRegistrationMapper = commonMealRegistrationMapper;
     _commonMealChefMapper         = commonMealChefMapper;
     _timeProvider = timeProvider;
 }
 public CommonMealChefController(ICommonMealChefMapper commonMealChefMapper, ICommonMealChefService commonMealChefService)
 {
     _commonMealChefMapper  = commonMealChefMapper;
     _commonMealChefService = commonMealChefService;
 }