public static IEnumerable Data_SQL_MDM_SAL_002_Test_database_driven()
        {
            var query = "SELECT top 10 * FROM dbo.ICC_V72 WHERE Version = '70.19.0.271'";

            return(DataDrivenHelper.ReadDataDriveDatabase(query,
                                                          new[] { "code", "country", "name" },
                                                          "Data_SQL_MDM_SAL_002_Test_database_driven"));
        }
        public static IEnumerable Data_CSV_MDM_SAL_003_Test_mobile()
        {
            var path = Path.Combine(pathCSVFile, @"MDM_SAL_003_Test_mobile_module.csv");

            return(DataDrivenHelper.ReadDataDriveFileCsv(path,
                                                         new[] { "CustomerID", "Name", "Remark" },
                                                         "MDM_SAL_003_Test_mobile_module"));
        }
        public static IEnumerable Data_CSV_MDM_SAL_002_Test_Region()
        {
            var path = Path.Combine(pathCSVFile, @"MDM_SAL_002_Test_Region.csv");

            return(DataDrivenHelper.ReadDataDriveFileCsv(path,
                                                         new[] { "code", "country", "name" },
                                                         "MDM_SAL_002_Test_Region"));
        }