Ejemplo n.º 1
0
 public GetUserByIdQueryHandler(IGenericRepoAsync <UserEntity> repo)
 {
     _repo = repo;
 }
Ejemplo n.º 2
0
 public CreateUserCommandHandler(IGenericRepoAsync <UserEntity> repo)
 {
     _repo = repo;
 }
Ejemplo n.º 3
0
 public UpdateAnotacionOTCommandHandler(IGenericRepoAsync <AnotacionOTEntity> repo)
 {
     _repo = repo;
 }
Ejemplo n.º 4
0
 public GetAllAnotacionesOTQueryHandler(IGenericRepoAsync <AnotacionOTEntity> repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Ejemplo n.º 5
0
 public GetAllUsersQueryHandler(IGenericRepoAsync <UserEntity> repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Ejemplo n.º 6
0
 public DeleteUserByIdCommandHandler(IGenericRepoAsync <UserEntity> repo)
 {
     _repo = repo;
 }
 public DeleteAnotacionOTByIdCommandHandler(IGenericRepoAsync <AnotacionOTEntity> repo)
 {
     _repo = repo;
 }