Exemple #1
0
 public TvItemsController(IFileService fileService, ITvItemService tvItemService, IEmailSender emailSender, IEventService eventService)
 {
     _fileService   = fileService;
     _tvItemService = tvItemService;
     _emailSender   = emailSender;
     _eventService  = eventService;
 }
Exemple #2
0
 public UtilityController(IFileService fileService, ITvItemService tvItemService, IEmailSender emailSender, IEventService eventService, IConfiguration configuration)
 {
     _fileService   = fileService;
     _tvItemService = tvItemService;
     _emailSender   = emailSender;
     _eventService  = eventService;
     _configuration = configuration;
 }
Exemple #3
0
 public GltvApiController(IFileService fileService, ITvItemService tvItemService, IEventService eventService)
 {
     _fileService   = fileService;
     _tvItemService = tvItemService;
     _eventService  = eventService;
 }
Exemple #4
0
 public EventService(ApplicationDbContext context, SignInManager <ApplicationUser> signInManager, ITvItemService tvItemService)
     : base(context, signInManager)
 {
     _tvItemService = tvItemService;
 }