public GetFeaturesByIdRangeQueryHandler(
     ICustomEntityRepository customEntityRepository
     )
 {
     _customEntityRepository = customEntityRepository;
 }
 public GetAllFeaturesQueryHandler(
     ICustomEntityRepository customEntityRepository
     )
 {
     _customEntityRepository = customEntityRepository;
 }
 public BlogPostDetailsDisplayModelMapper(
     ICustomEntityRepository customEntityRepository
     )
 {
     _customEntityRepository = customEntityRepository;
 }
 public GetBreedByIdQueryHandler(
     ICustomEntityRepository customEntityRepository
     )
 {
     _customEntityRepository = customEntityRepository;
 }
 public SidebarCategoriesViewComponent(
     ICustomEntityRepository customEntityRepository
     )
 {
     _customEntityRepository = customEntityRepository;
 }
Example #6
0
 public SearchPlayerSummariesQueryHandler(ICustomEntityRepository customEntityRepository, IImageAssetRepository imageAssetRepository, AccedeTeamsDbContext dbContext)
 {
     _customEntityRepository = customEntityRepository;
     _imageAssetRepository   = imageAssetRepository;
     _dbContext = dbContext;
 }
 public GetAllBreedsQueryHandler(
     ICustomEntityRepository customEntityRepository
     )
 {
     _customEntityRepository = customEntityRepository;
 }