public BarController(IBarCommentsServices barCommentsServices, IBarServices barServices, IToastNotification toast, UserManager <User> manager, IBarRatingServices barRatingServices)
 {
     this.barCommentsServices = barCommentsServices;
     this.barServices         = barServices;
     this.toast             = toast;
     this.manager           = manager;
     this.barRatingServices = barRatingServices;
 }
Beispiel #2
0
 public BarController(IBarServices barServices, ICountryServices countryServices, IToastNotification toast, UserManager <User> manager, IBarCommentsServices barCommentsServices, ICocktailServices cocktailServices)
 {
     this.barServices         = barServices;
     this.countryServices     = countryServices;
     this.toast               = toast;
     this.manager             = manager;
     this.barCommentsServices = barCommentsServices;
     this.cocktailServices    = cocktailServices;
 }