/// <summary>
        /// LoadByCompaniesIdCountryId
        /// </summary>
        /// <param name="companiesId">COMPANIES_ID</param>
        /// <param name="countryId">countryId</param>
        /// <param name="companyId">companyId</param>
        public void LoadByCompaniesIdCountryId(int companiesId, int countryId, int companyId)
        {
            FlToBePreppedReportGateway flToBePreppedReportGateway = new FlToBePreppedReportGateway(Data);
            flToBePreppedReportGateway.LoadByCompaniesIdCountryId(companiesId, countryId, companyId);

            UpdateForReport();
        }
        // ////////////////////////////////////////////////////////////////////////
        // PUBLIC METHODS
        //
        /// <summary>
        /// Load
        /// </summary>
        /// <param name="companyId">companyId</param>
        public void Load(int companyId)
        {
            FlToBePreppedReportGateway flToBePreppedReportGateway = new FlToBePreppedReportGateway(Data);
            flToBePreppedReportGateway.Load(companyId);

            UpdateForReport();
        }