コード例 #1
0
 public SubscribesService(IEcomakRepository EcomakRepository, IMapper mapper)
 {
     this.EcomakRepository = EcomakRepository;
     this.mapper           = mapper;
     allowedOrderByValues  = new HashSet <string>()
     {
         "name", "price", "state", "id"
     };
 }
コード例 #2
0
 public PromotionsService(IEcomakRepository premierLeagueRepository, IMapper mapper)
 {
     this.premierLeagueRepository = premierLeagueRepository;
     this.mapper          = mapper;
     allowedOrderByValues = new HashSet <string>()
     {
         "tittle", "description", "iniDate", "endDate", "id"
     };
 }
コード例 #3
0
 public CommentsService(IEcomakRepository premierLeagueRepository, IMapper mapper)
 {
     this.premierLeagueRepository = premierLeagueRepository;
     this.mapper          = mapper;
     allowedOrderByValues = new HashSet <string>()
     {
         "author", "commet", "date", "id"
     };
 }
コード例 #4
0
 public CategoriesService(IEcomakRepository CategoriesRepository, IMapper mapper)
 {
     this.CategoriesRepository = CategoriesRepository;
     this.mapper = mapper;
 }
コード例 #5
0
 public TrsService(IEcomakRepository EcomakRepository, IMapper mapper)
 {
     this.EcomakRepository = EcomakRepository;
     this.mapper           = mapper;
 }
コード例 #6
0
 public QuotesService(IEcomakRepository _QuotesRepository, IMapper _mapper)
 {
     this.QuotesRepository = _QuotesRepository;
     this.mapper           = _mapper;
 }
コード例 #7
0
 public ImagesService(IEcomakRepository _EcomakRepository, IMapper _mapper)
 {
     this.EcomakRepository = _EcomakRepository;
     this.mapper           = _mapper;
 }