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

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

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

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

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

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

            return(provider.GetByFactory(factoryCode));
        }