Example #1
0
 protected bool Equals(SolutionItemDatabaseEntity other)
 {
     return(Key == other.Key);
 }
Example #2
0
 public SolutionItemDatabaseEntity(SolutionItemDatabaseEntity copy)
 {
     Key = copy.Key;
     ExistsInDatabase = copy.ExistsInDatabase;
     OriginalValues   = copy.OriginalValues?.Select(c => new EntityOrigianlField(c)).ToList();
 }