Example #1
0
 public PettingService(ISatisfactionService satisfactionService,
                       IOptions <PettingOptions> pettingOptions)
 {
     _satisfactionService = satisfactionService;
     _options             = pettingOptions.Value;
 }
 public FeedingService(ISatisfactionService satisfactionService,
                       IOptions <FeedingOptions> feedingOptions)
 {
     _satisfactionService = satisfactionService;
     _options             = feedingOptions.Value;
 }