Exemplo n.º 1
0
 public RestaurantsController(UserManager <User> userManager, IOwnerRestaurantService ownerRestaurantService, IAdminCityService adminCityService, IOwnerMenuService adminMenuService)
 {
     this.userManager            = userManager;
     this.ownerRestaurantService = ownerRestaurantService;
     this.adminCityService       = adminCityService;
     this.adminMenuService       = adminMenuService;
 }
Exemplo n.º 2
0
 public MenusController(UserManager <User> userManager, IOwnerMenuService ownerMenuService, IOwnerFoodService ownerFoodService)
 {
     this.userManager      = userManager;
     this.ownerMenuService = ownerMenuService;
     this.ownerFoodService = ownerFoodService;
 }