Example #1
0
 public static void Upsert(SmartThought smartThought)
 {
     if (!Data.Any(x => x.Id == smartThought.Id))
     {
         Data.Add(smartThought);
     }
 }
Example #2
0
 public void Load(SmartThought smartThought)
 {
     SmartThoughtUnderEdit = smartThought;
 }