Exemple #1
0
 public DeleteLeagueByIdCommandHandler(ILeagueRepositoryAsync leagueRepository)
 {
     _leagueRepository = leagueRepository;
 }
 public UpdateLeagueCommandHandler(ILeagueRepositoryAsync leagueRepository)
 {
     _leagueRepository = leagueRepository;
 }
Exemple #3
0
 public GetProductByIdQueryHandler(ILeagueRepositoryAsync leagueRepository)
 {
     _leagueRepository = leagueRepository;
 }
Exemple #4
0
 public CreateLeagueCommandHandler(ILeagueRepositoryAsync leagueRepository, IMapper mapper)
 {
     _leagueRepository = leagueRepository;
     _mapper           = mapper;
 }
 public GetAllLeaguesQueryHandler(ILeagueRepositoryAsync leagueRepository, IMapper mapper)
 {
     _leagueRepository = leagueRepository;
     _mapper           = mapper;
 }