/// <summary>
 /// Saves this business object into database.
 /// </summary>
 /// <param name="method">Method of loading of the data from a storage</param>
 /// <returns>True if save operation succeeded.</returns>
 virtual public bool Save(CommunicationMethod method)
 {
     return(manager.InternalSaveObject(this, method));
 }