Example #1
0
        public ApplicationServiceEvent(
            IServiceEvent serviceEvent,
            IMapperEvent mapperEvent,
            IApplicationServiceUserEvent applicationServiceUserEvent,
            IApplicationServiceUser applicationServiceUser,
            IHttpContextAccessor httpContextAccessor
            )
        {
            _serviceEvent = serviceEvent;
            _mapperEvent  = mapperEvent;

            _applicationServiceUserEvent = applicationServiceUserEvent;
            _applicationServiceUser      = applicationServiceUser;

            _httpContextAccessor = httpContextAccessor;
        }
 public UsersController(IApplicationServiceUser ApplicationServiceUser)
 {
     _applicationServiceUser = ApplicationServiceUser;
 }
Example #3
0
 public UserController(IApplicationServiceUser applicationServiceUser)
 {
     _applicationServiceUser = applicationServiceUser;
 }