예제 #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;
 }