public DeletePlaceTypeCommandHandler(ILicensePlateRepository repository, IUnitOfWork unitOfWork, UserManager <ApplicationUser> _userManager, IAuthenticatedUserService _authenticatedUser)
 {
     _repository             = repository;
     _unitOfWork             = unitOfWork;
     this._userManager       = _userManager;
     this._authenticatedUser = _authenticatedUser;
 }
 public CreatePlaceTypeCommandHandler(ILicensePlateRepository repository, IUnitOfWork unitOfWork, IMapper mapper, IAuthenticatedUserService authenticatedUser)
 {
     _repository        = repository;
     _unitOfWork        = unitOfWork;
     _mapper            = mapper;
     _authenticatedUser = authenticatedUser;
 }
Esempio n. 3
0
 public UpdateCommandHandler(ILicensePlateRepository repository, IUnitOfWork unitOfWork, IMapper mapper, UserManager <ApplicationUser> _userManager, IAuthenticatedUserService _authenticatedUser)
 {
     _repository             = repository;
     _unitOfWork             = unitOfWork;
     _mapper                 = mapper;
     this._userManager       = _userManager;
     this._authenticatedUser = _authenticatedUser;
 }
Esempio n. 4
0
 public GGetAllQueryHandler(ILicensePlateRepository repository)
 {
     _repository = repository;
 }
 public RegistrationService(ILicensePlateRepository repo)
 {
     _repo = repo;
 }
 public GetPlaceTypeByIdQueryHandler(ILicensePlateRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }