/// <summary>
        /// Bulk insert Price 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 BulkInsertPriceReport(string fileName)
        {
            var _bulkInsertContext = new DeluxeOrderManagementEntities();

            return(_bulkInsertContext.usp_InsertDataToApplePriceStaging(fileName));
        }
        /// <summary>
        /// Bulk insert VID file into staging table
        /// </summary>
        /// <param name="fileName">FilePath where it is downloaded</param>
        public void BulkInsertVID(string fileName)
        {
            var _bulkInsertContext = new DeluxeOrderManagementEntities();

            _bulkInsertContext.usp_InsertDataToApplePriceStaging(fileName);
        }