Beispiel #1
0
        public static List <AllZoneinfoEntity> GetByPlatform(System.String platformCode, string zoneId = "")
        {
            var provider = new AllZoneinfoProvider();

            return(provider.GetByPlatform(platformCode));
        }
Beispiel #2
0
        public static List <AllZoneinfoEntity> GetAllForFactory(string zoneId = "")
        {
            var provider = new AllZoneinfoProvider();

            return(provider.GetAllForFactory());
        }
Beispiel #3
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            AllZoneinfoProvider provider = new AllZoneinfoProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Beispiel #4
0
        public static bool Update(AllZoneinfoEntity allZoneinfoEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new AllZoneinfoProvider(zoneId);

            return(provider.Update(allZoneinfoEntity, trans));
        }
Beispiel #5
0
        public static AllZoneinfoEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new AllZoneinfoProvider(zoneId);

            return(provider.GetById(idx));
        }