public AccountController(string address)
 {
     _client = ProductManagerODataClient.GetCustomClient(address);
 }
 public AccountController()
 {
     _client = ProductManagerODataClient.GetDefaultClient();
 }
 public CategoryController(string address)
 {
     _client = ProductManagerODataClient.GetCustomClient(address);
 }
 public CategoryController()
 {
     _client = ProductManagerODataClient.GetDefaultClient();
 }
Exemple #5
0
 public UsersAdminController(string address)
 {
     _client = ProductManagerODataClient.GetCustomClient(address);
 }
Exemple #6
0
 public UsersAdminController()
 {
     _client = ProductManagerODataClient.GetDefaultClient();
 }