示例#1
0
 public UserAppService(IMapper mapper, ICosmosToggleDataContext cosmosToggleDataContext, INotificationContext notificationContext,
                       IValidator <User> userValidator, IAuthAppService authAppService)
 {
     _mapper = mapper;
     _cosmosToggleDataContext = cosmosToggleDataContext;
     _notificationContext     = notificationContext;
     _userValidator           = userValidator;
 }
示例#2
0
 public HttpSecurityContext(IHttpContextAccessor httpContextAccessor, ICosmosToggleDataContext cosmosToggleDataContext,
                            IMapper mapper, INotificationContext notificationContext)
 {
     _httpContextAccessor     = httpContextAccessor;
     _cosmosToggleDataContext = cosmosToggleDataContext;
     _mapper = mapper;
     _notificationContext = notificationContext;
 }
 public FlagAppService(IMapper mapper, IValidator <Flag> flagValidator, ICosmosToggleDataContext cosmosToggleDataContext,
                       INotificationContext notificationContext, IAuthAppService authAppService)
 {
     _mapper                  = mapper;
     _flagValidator           = flagValidator;
     _cosmosToggleDataContext = cosmosToggleDataContext;
     _notificationContext     = notificationContext;
     _authAppService          = authAppService;
 }
 public EnvironmentAppService(IMapper mapper, IValidator <Environment> environmentValidator,
                              ICosmosToggleDataContext cosmosToggleDataContext, INotificationContext notificationContext, IAuthAppService authAppService)
 {
     _mapper = mapper;
     _cosmosToggleDataContext = cosmosToggleDataContext;
     _environmentValidator    = environmentValidator;
     _notificationContext     = notificationContext;
     _authAppService          = authAppService;
 }
示例#5
0
 public ProjectAppService(IMapper mapper, IValidator <Project> productValidator, ICosmosToggleDataContext cosmosToggleDataContext,
                          INotificationContext notificationContext, ISecurityContext securityContext, IAuthAppService authAppService, IUserAppService userAppService)
 {
     _mapper                  = mapper;
     _productValidator        = productValidator;
     _cosmosToggleDataContext = cosmosToggleDataContext;
     _notificationContext     = notificationContext;
     _securityContext         = securityContext;
     _authAppService          = authAppService;
     _userAppService          = userAppService;
 }
 public AuthAppService(IMapper mapper, ICosmosToggleDataContext cosmosToggleDataContext,
                       INotificationContext notificationContext, IValidator <Login> loginValidator,
                       ITokenService tokenService, ISecurityContext securityContext)
 {
     _mapper = mapper;
     _cosmosToggleDataContext = cosmosToggleDataContext;
     _notificationContext     = notificationContext;
     _loginValidator          = loginValidator;
     _tokenService            = tokenService;
     _securityContext         = securityContext;
 }