public static bool Update(AllUaplatformEntity allUaplatformEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new AllUaplatformProvider(zoneId);

            return(provider.Update(allUaplatformEntity, trans));
        }
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            AllUaplatformProvider provider = new AllUaplatformProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
        public static List <AllUaplatformEntity> GetAll(string zoneId = "")
        {
            var provider = new AllUaplatformProvider(zoneId);

            return(provider.GetAll());
        }
        public static AllUaplatformEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new AllUaplatformProvider(zoneId);

            return(provider.GetById(idx));
        }
Beispiel #5
0
        public static AllUaplatformEntity GetByCode(string platformCode)
        {
            var provider = new AllUaplatformProvider();

            return(provider.GetByCode(platformCode));
        }
Beispiel #6
0
        public static List <AllUaplatformEntity> GetByFactory(System.String factoryCode, string zoneId = "")
        {
            var provider = new AllUaplatformProvider();

            return(provider.GetByFactory(factoryCode));
        }