Exemple #1
0
        public List <VehicleTypeInfoDb> GetVehicleTypeInfoByBrandName(string brandNames)
        {
            Func <SqlConnection, List <VehicleTypeInfoDb> > action = (connection) => DalProductVehicleInfo.GetVehicleTypeInfoByBrandName(connection, brandNames);

            return(dbManager.Execute(action));
        }