/// -----------------------------------------------------------------------------
 /// <summary>
 /// gets an object from the database
 /// </summary>
 /// <remarks>
 /// </remarks>
 /// <param name="moduleId">The Id of the module</param>
 /// <history>
 /// </history>
 /// -----------------------------------------------------------------------------
 public List <SF_DonationsListInfo> GetSF_DonationsLists(int ModuleId)
 {
     return(CBO.FillCollection <SF_DonationsListInfo>(DataProvider.Instance().GetSF_DonationsLists(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_DonationsList(int ModuleId, int ItemId)
 {
     DataProvider.Instance().DeleteSF_DonationsList(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_DonationsListInfo GetSF_DonationsList(int ModuleId, int ItemId)
 {
     return(CBO.FillObject <SF_DonationsListInfo>(DataProvider.Instance().GetSF_DonationsList(ModuleId, ItemId)));
 }