Esempio n. 1
0
 private void BeforeSave(HasId document)
 {
     if (document.GetId().IsEmpty())
     {
         document.SetId(Guid.NewGuid().ToString());
     }
 }
Esempio n. 2
0
 public static bool HasId(this HasId target, object id)
 {
     return(Equals(target.GetId(), id));
 }