//[TestMethod]
        public void ShouldFilter_CustomExport_ASIN()
        {
            //Arrange
            ExportDataService service = new ExportDataService(null, null);
            ExportProduct     param   = new ExportProduct();

            param.HasASIN           = true;
            param.IsAllProductItems = true;

            //Act
            var result = service.CustomExportProducts(param).ToList();


            //Assert
            Debug.WriteLine(result.Count);
            // Assert.IsTrue(result.Count > 0, "No Items Found.");
        }