예제 #1
0
 public PantryController(IPantryService pantryService)
 {
     _pantryService = pantryService;
 }
예제 #2
0
 public PantryController(IPantryService pantryService, UserInformation userInformation)
 {
     this.service         = pantryService;
     this.userInformation = userInformation;
 }
예제 #3
0
 public RecipeService(IRecipeRepository repository, IPantryService pantryService)
 {
     this.repository    = repository;
     this.pantryService = pantryService;
 }