Пример #1
0
 public CarBrandService(IDealerShipRepository dealerShipRepository, IMapper mapper)
 {
     this.dealerShipRepository = dealerShipRepository;
     this.mapper          = mapper;
     allowedOrderByValues = new HashSet <string>()
     {
         "id", "name", "nationality", "phono", "facebook", "ubication", "about", "oficialPage"
     };
 }
Пример #2
0
 public CarModelService(IDealerShipRepository dealerShipRepository)
 {
     this.dealerShipRepository = dealerShipRepository;
 }