/// <summary>
        /// LoadByCompaniesIdStartDateEndDate
        /// </summary>
        /// <param name="companiesId">COMPANIES_ID</param>
        /// <param name="startDate">startDate</param>
        /// <param name="endDate">endDate</param>
        /// /// <param name="companyId">companyId</param>
        public void LoadByCompaniesIdStartDateEndDate(int companiesId, DateTime startDate, DateTime endDate, int companyId)
        {
            FlLiningCompletedReportGateway flLiningCompletedReportGateway = new FlLiningCompletedReportGateway(Data);
            flLiningCompletedReportGateway.LoadByCompaniesIdStartDateEndDate(companiesId, startDate, endDate, companyId);

            UpdateForReport();
        }
        /// <summary>
        /// LoadByStartDateEndDateCountryId
        /// </summary>
        /// <param name="startDate">startDate</param>
        /// <param name="endDate">endDate</param>
        /// <param name="countryId">countryId</param>
        /// <param name="companyId">companyId</param>
        public void LoadByStartDateEndDateCountryId(DateTime startDate, DateTime endDate, int countryId, int companyId)
        {
            FlLiningCompletedReportGateway flLiningCompletedReportGateway = new FlLiningCompletedReportGateway(Data);
            flLiningCompletedReportGateway.LoadByStartDateEndDateCountryId(startDate, endDate, countryId, companyId);

            UpdateForReport();
        }