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