public CreateUserCommandHandler(
     IMapper mapper,
     IPasswordVerifier verifier,
     FirstAddictionContext context)
 {
     this.Mapper   = mapper;
     this.Verifier = verifier;
     this.Context  = context;
 }
 public UpdateUserInfoCommandHandler(
     IHttpContextAccessor accessor,
     FirstAddictionContext context,
     IMapper mapper)
 {
     this.Accessor = accessor;
     this.Context  = context;
     this.Mapper   = mapper;
 }
Esempio n. 3
0
 public LoginCommandHandler(
     FirstAddictionContext context,
     IPasswordVerifier verifier,
     IMapper mapper)
 {
     this.Context  = context;
     this.Verifier = verifier;
     this.Mapper   = mapper;
 }
Esempio n. 4
0
 public UserController(
     IMediator mediator,
     IConfiguration config,
     FirstAddictionContext context,
     IMapper mapper)
 {
     this.Mediator = mediator;
     this.Config   = config;
     this.Context  = context;
     this.Mapper   = mapper;
 }
 public AddVideoCommandHandler(
     FirstAddictionContext context,
     ILogger <AddVideoCommandHandler> logger,
     IHttpContextAccessor accessor,
     IMapper mapper)
 {
     this.Context  = context;
     this.Logger   = logger;
     this.Accessor = accessor;
     this.Mapper   = mapper;
 }
 public MediaController(IMediator mediator, FirstAddictionContext context)
 {
     this.Mediator = mediator;
     this.Context  = context;
 }