Ejemplo n.º 1
0
 private void Update(DomainObjectBase domainObject)
 {
     CreateTableIfNecessary(domainObject.GetType());
      domainObject.LastModified = GetLastModified();
      Connection.Update(domainObject);
 }
Ejemplo n.º 2
0
 private void Delete(DomainObjectBase domainObject)
 {
     CreateTableIfNecessary(domainObject.GetType());
      Connection.Delete(domainObject.Id);
 }