public CommonMealShoppingInfoService(ICommonMealRepository commonMealRepository, ICommonMealExpenseRepository commonMealExpenseRepository, ITimeProvider timeProvider, IPersonRepository personRepository, ICommonMealPriceSettings commonMealPriceSettings)
 {
     _commonMealPriceSettings     = commonMealPriceSettings;
     _commonMealRepository        = commonMealRepository;
     _commonMealExpenseRepository = commonMealExpenseRepository;
     _timeProvider     = timeProvider;
     _personRepository = personRepository;
 }
예제 #2
0
 public CommonMealStatisticsService(ICommonMealStatisticsRepository statisticsRepository, IPersonRepository personRepository, ICommonMealPriceSettings commonMealPriceSettings)
 {
     _statisticsRepository    = statisticsRepository;
     _personRepository        = personRepository;
     _commonMealPriceSettings = commonMealPriceSettings;
 }