Example #1
0
 public MyWeddingController(UserManager <ApplicationUser> userManager, IWeddingService weddingService, IGuestsService guestsService, IExpensesService expensesService, ITasksService tasksService)
 {
     this.userManager     = userManager;
     this.weddingService  = weddingService;
     this.guestsService   = guestsService;
     this.tasksService    = tasksService;
     this.expensesService = expensesService;
 }
 public GuestsController(
     ICitiesService citiesService,
     IGuestsService guestsService,
     ICountriesService countriesService,
     IGendersService gendersService,
     UserManager <ApplicationUser> userManager)
 {
     this.citiesService    = citiesService;
     this.guestsService    = guestsService;
     this.countriesService = countriesService;
     this.gendersService   = gendersService;
     this.userManager      = userManager;
 }
 public GuestsController(IGuestsService service) =>
 this.service = service;
Example #4
0
 public HiraganaController(IGuestsService service) => _service = service;
Example #5
0
 public EventsController(IEventsService eventsService, IGuestsService guestsService, IHostingEnvironment hostingEnvironment)
 {
     _eventsService      = eventsService;
     _guestsService      = guestsService;
     _hostingEnvironment = hostingEnvironment;
 }
 public InvitationController(ILogger <GuestController> logger, IGuestsService guestsService)
 {
     _logger        = logger;
     _guestsService = guestsService;
 }
Example #7
0
 public GuestsController(IGuestsService guestsService, UserManager <ApplicationUser> userManager)
 {
     this.guestsService = guestsService;
     this.userManager   = userManager;
 }