Exemple #1
0
 public void Insert(DataContracts.Device entity)
 {
     base.Channel.Insert(entity);
 }
Exemple #2
0
 public System.Threading.Tasks.Task InsertAsync(DataContracts.Device entity)
 {
     return(base.Channel.InsertAsync(entity));
 }
Exemple #3
0
 public void Update(DataContracts.Device entity)
 {
     base.Channel.Update(entity);
 }
Exemple #4
0
 public void Delete(DataContracts.Device entity)
 {
     base.Channel.Delete(entity);
 }
Exemple #5
0
 public void Delete(DataContracts.Device entity)
 {
     MyWebServices.DeviceService.Delete(entity);
 }
Exemple #6
0
 public void Update(DataContracts.Device entity)
 {
     MyWebServices.DeviceService.Update(entity);
 }
Exemple #7
0
 public void Insert(DataContracts.Device entity)
 {
     MyWebServices.DeviceService.Insert(entity);
 }