Пример #1
0
 public GetUserByIdQueryHandler(IGenericRepoAsync <UserEntity> repo)
 {
     _repo = repo;
 }
Пример #2
0
 public CreateUserCommandHandler(IGenericRepoAsync <UserEntity> repo)
 {
     _repo = repo;
 }
Пример #3
0
 public UpdateAnotacionOTCommandHandler(IGenericRepoAsync <AnotacionOTEntity> repo)
 {
     _repo = repo;
 }
Пример #4
0
 public GetAllAnotacionesOTQueryHandler(IGenericRepoAsync <AnotacionOTEntity> repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Пример #5
0
 public GetAllUsersQueryHandler(IGenericRepoAsync <UserEntity> repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Пример #6
0
 public DeleteUserByIdCommandHandler(IGenericRepoAsync <UserEntity> repo)
 {
     _repo = repo;
 }
 public DeleteAnotacionOTByIdCommandHandler(IGenericRepoAsync <AnotacionOTEntity> repo)
 {
     _repo = repo;
 }