Example #1
0
 public SmartboardPersistency()
 {
     _webApi = new WebAPIAsync <SmartBoard>(ServerUrl, ApiPrefix, smartboardUri);
 }
Example #2
0
 public AccesoryPersistency()
 {
     _webApi = new WebAPIAsync <Accesory>(_serverURL, _apiPrefix, _accesoryURI);
 }
Example #3
0
 public ErrorPersistency()
 {
     _webApi = new WebAPIAsync <Error>(_serverURL, _apiPrefix, errorURI);
 }
Example #4
0
 public ComputerPersistency()
 {
     _webApi = new WebAPIAsync <Computer>(ServerUrl, ApiPrefix, URI);
 }
Example #5
0
 public EmployeePersistency()
 {
     _webApi = new WebAPIAsync <Employee>(ServerUrl, ApiPrefix, EmployeeUri);
 }
Example #6
0
 public SmartphonePersistency()
 {
     _webApi = new WebAPIAsync <SmartPhone>(ServerUrl, ApiPrefix, smartphoneUri);
 }
Example #7
0
 public EquipmentPersistency()
 {
     _webApi = new WebAPIAsync <Equipment>(ServerUrl, ApiPrefix, EquipmentUri);
 }