public HomeController(IUsersService userService, IBeerService beerService, IBreweryService breweryService, IStorageService storageService, ICheckinService checkinService, ILoggerService loggerService) { _userService = userService; _beerService = beerService; _breweryService = breweryService; _storageService = storageService; _checkinService = checkinService; _loggerService = loggerService; }
public CheckInViewModel( IAuthenticationService authenticationService, ICheckinService checkinService) { _authenticationService = authenticationService; _checkinService = checkinService; _index = 0; }
public CheckinApiController(ICheckinService checkinService) { _checkinService = checkinService; }
public ProfileController(ICheckinService checkinService, IBeerService beerService) { _checkinService = checkinService; _beerService = beerService; }
public CheckinController(ApplicationDbContext dbContext, UserManager <ApplicationUser> userManager, ICheckinService checkinService) { this.dbContext = dbContext; this.userManager = userManager; this.checkinService = checkinService; }
public CheckinController(ICheckinService checkinService) { _checkinService = checkinService ?? throw new ArgumentNullException(nameof(checkinService)); }