InsertProfile() public abstract method

Inserts a new Page into the data store specified by the provider.
public abstract InsertProfile ( AuthorProfile profile ) : void
profile AuthorProfile /// The profile to insert. ///
return void
Example #1
0
 /// <summary>
 /// Persists a new Page in the current provider.
 /// </summary>
 public static void InsertProfile(AuthorProfile profile)
 {
     LoadProviders();
     _provider.InsertProfile(profile);
 }