Exemplo n.º 1
0
 public System.Threading.Tasks.Task DeleteAsync(DataContracts.UserProducts entity)
 {
     return(base.Channel.DeleteAsync(entity));
 }
Exemplo n.º 2
0
 public void Update(DataContracts.UserProducts entity)
 {
     base.Channel.Update(entity);
 }
Exemplo n.º 3
0
 public void Delete(DataContracts.UserProducts entity)
 {
     base.Channel.Delete(entity);
 }
Exemplo n.º 4
0
 public void Delete(DataContracts.UserProducts entity)
 {
     _repo.Delete(entity);
 }
Exemplo n.º 5
0
 public void Insert(DataContracts.UserProducts entity)
 {
     base.Channel.Insert(entity);
 }
Exemplo n.º 6
0
 public void Update(DataContracts.UserProducts entity)
 {
     _repo.Update(entity);
 }
Exemplo n.º 7
0
 public void Insert(DataContracts.UserProducts entity)
 {
     _repo.Insert(entity);
 }
 public void Delete(DataContracts.UserProducts entity)
 {
     MyWebServices.UserProductsService.Delete(entity);
 }
 public void Update(DataContracts.UserProducts entity)
 {
     MyWebServices.UserProductsService.Update(entity);
 }
 public void Insert(DataContracts.UserProducts entity)
 {
     MyWebServices.UserProductsService.Insert(entity);
 }