Exemplo n.º 1
0
        public ApplicationServiceEvent(
            IServiceEvent serviceEvent,
            IMapperEvent mapperEvent,
            IApplicationServiceUserEvent applicationServiceUserEvent,
            IApplicationServiceUser applicationServiceUser,
            IHttpContextAccessor httpContextAccessor
            )
        {
            _serviceEvent = serviceEvent;
            _mapperEvent  = mapperEvent;

            _applicationServiceUserEvent = applicationServiceUserEvent;
            _applicationServiceUser      = applicationServiceUser;

            _httpContextAccessor = httpContextAccessor;
        }
Exemplo n.º 2
0
 public UsersController(IApplicationServiceUser ApplicationServiceUser)
 {
     _applicationServiceUser = ApplicationServiceUser;
 }
Exemplo n.º 3
0
 public UserController(IApplicationServiceUser applicationServiceUser)
 {
     _applicationServiceUser = applicationServiceUser;
 }