Delete() public static méthode

Deletes the instance from the database.
public static Delete ( object instance ) : void
instance object The ActiveRecord instance to be deleted
Résultat void
 /// <summary>
 /// Deletes the instance from the database.
 /// </summary>
 /// <param name="instance"></param>
 public static void Delete(T instance)
 {
     ActiveRecordMediator.Delete(instance);
 }