/// <summary>
        /// Bulk insert QC Report file into staging table
        /// </summary>
        /// <param name="fileName">FilePath where it is downloaded</param>
        /// <returns>No record inserted into staging table</returns>
        public int BulkInsertQCReport(string fileName)
        {
            var _bulkInsertContext = new DeluxeOrderManagementEntities();

            return(_bulkInsertContext.usp_InsertDataToAppleQCStaging(fileName));
        }