public ClassificationService(IRestAPIService restAPIService)
 {
     _restAPIService = restAPIService;
 }
Example #2
0
 public CityService(IRestAPIService restAPIService)
 {
     _restAPIService = restAPIService;
 }
Example #3
0
 public GenderService(IRestAPIService restAPIService)
 {
     _restAPIService = restAPIService;
 }
Example #4
0
 public RegionService(IRestAPIService restAPIService)
 {
     _restAPIService = restAPIService;
 }
Example #5
0
 public SellerService(IRestAPIService restAPIService)
 {
     _restAPIService = restAPIService;
 }
Example #6
0
 public AuthorizationService(IRestAPIService restAPIService,
                             IHttpContextAccessor session)
 {
     _restAPIService = restAPIService;
     _session        = session;
 }
Example #7
0
 public CustomerService(IRestAPIService restAPIService)
 {
     _restAPIService = restAPIService;
 }