/// -----------------------------------------------------------------------------
 /// <summary>
 /// gets an object from the database
 /// </summary>
 /// <remarks>
 /// </remarks>
 /// <param name="moduleId">The Id of the module</param>
 /// <history>
 /// </history>
 /// -----------------------------------------------------------------------------
 public List <SF_CreateDonationInfo> GetSF_CreateDonations(int ModuleId)
 {
     return(CBO.FillCollection <SF_CreateDonationInfo>(DataProvider.Instance().GetSF_CreateDonations(ModuleId)));
 }
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// deletes an object from the database
 /// </summary>
 /// <remarks>
 /// </remarks>
 /// <param name="ModuleId">The Id of the module</param>
 /// <param name="ItemId">The Id of the item</param>
 /// <history>
 /// </history>
 /// -----------------------------------------------------------------------------
 public void DeleteSF_CreateDonation(int ModuleId, int ItemId)
 {
     DataProvider.Instance().DeleteSF_CreateDonation(ModuleId, ItemId);
 }
 /// -----------------------------------------------------------------------------
 /// <summary>
 /// gets an object from the database
 /// </summary>
 /// <remarks>
 /// </remarks>
 /// <param name="moduleId">The Id of the module</param>
 /// <param name="ItemId">The Id of the item</param>
 /// <history>
 /// </history>
 /// -----------------------------------------------------------------------------
 public SF_CreateDonationInfo GetSF_CreateDonation(int ModuleId, int ItemId)
 {
     return(CBO.FillObject <SF_CreateDonationInfo>(DataProvider.Instance().GetSF_CreateDonation(ModuleId, ItemId)));
 }