コード例 #1
0
ファイル: IPlatiRepository.cs プロジェクト: andpsy/socisaV2
        public response Update(int id, string fieldValueCollection)
        {
            //Plata item = JsonConvert.DeserializeObject<Plata>(Find(id).Message);
            Plata item = (Plata)(Find(id).Result);

            return(item.Update(fieldValueCollection));
        }
コード例 #2
0
ファイル: IPlatiRepository.cs プロジェクト: andpsy/socisaV2
 public response Update(Plata item)
 {
     return(item.Update());
 }