Ejemplo n.º 1
0
 public override void SaveExtendedTextData(Type type, string id, string key, string value)
 {
     if (_exDataAccessor.IsExtendedTextDataExists(type.FullName, id, key))
     {
         _exDataAccessor.UpdateExtendedTextData(type.FullName, id, key, value);
     }
     else
     {
         _exDataAccessor.InsertExtendedTextData(type.FullName, id, key, value);
     }
 }