コード例 #1
0
ファイル: EntityService.cs プロジェクト: JohnPaine/elmatime
 public System.Threading.Tasks.Task <string> UpdateAsync(string typeuid, string entityid, WebData entityData)
 {
     return(base.Channel.UpdateAsync(typeuid, entityid, entityData));
 }
コード例 #2
0
ファイル: EntityService.cs プロジェクト: JohnPaine/elmatime
 public System.Threading.Tasks.Task <string> InsertAsync(string typeuid, WebData entityData)
 {
     return(base.Channel.InsertAsync(typeuid, entityData));
 }
コード例 #3
0
ファイル: EntityService.cs プロジェクト: JohnPaine/elmatime
 public string Update(string typeuid, string entityid, WebData entityData)
 {
     return(base.Channel.Update(typeuid, entityid, entityData));
 }
コード例 #4
0
ファイル: EntityService.cs プロジェクト: JohnPaine/elmatime
 public string Insert(string typeuid, WebData entityData)
 {
     return(base.Channel.Insert(typeuid, entityData));
 }