InsertCategory() public abstract méthode

Inserts a new Category into the data store specified by the provider.
public abstract InsertCategory ( Category category ) : void
category Category /// The category. ///
Résultat void
 /// <summary>
 /// Persists a new Category in the current provider.
 /// </summary>
 public static void InsertCategory(Category category)
 {
     LoadProviders();
     _provider.InsertCategory(category);
 }