public RestaurantOwnerController(IRestaurantOwnerService restaurantOwnerService, IUserService userService)
 {
     _restaurantOwnerService = restaurantOwnerService;
     _userService            = userService;
 }
Beispiel #2
0
 public RestaurantOwnerController(IRestaurantOwnerService restaurantOwnerService)
 {
     _restaurantOwnerService = restaurantOwnerService;
 }