Exemplo n.º 1
0
 public FileService(ApplicationDbContext context, IWebHostEnvironment hostingEnvironment, IOptions <OptionsForUploadFiles> optionsForUploadFiles, ICheckUserService checkUserService, IHttpContextAccessor httpContext)
 {
     this.context               = context;
     this.hostingEnvironment    = hostingEnvironment;
     this.optionsForUploadFiles = optionsForUploadFiles.Value;
     this.checkUserService      = checkUserService;
     this.httpContext           = httpContext;
 }
Exemplo n.º 2
0
 public TaskTagService(IUnitOfWork context, ICheckUserService checkUserService)
 {
     this.context          = context;
     this.checkUserService = checkUserService;
 }
Exemplo n.º 3
0
 public PlayerManager(ICheckUserService checkUserService)
 {
     _checkUserService = checkUserService;
 }
Exemplo n.º 4
0
 public CheckUserQueryHandler(ICheckUserService <User> checkUserService)
 {
     this.checkUserService = checkUserService;
 }