Beispiel #1
0
        public static bool Update(AllPlatmapEntity allPlatmapEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new AllPlatmapProvider(zoneId);

            return(provider.Update(allPlatmapEntity, trans));
        }
Beispiel #2
0
        public static List <AllPlatmapEntity> GetAll(string zoneId = "")
        {
            var provider = new AllPlatmapProvider(zoneId);

            return(provider.GetAll());
        }
Beispiel #3
0
        public static bool Delete(System.String platCode, DbTransaction trans = null, string zoneId = "")
        {
            AllPlatmapProvider provider = new AllPlatmapProvider(zoneId);

            return(provider.Delete(platCode, trans));
        }
Beispiel #4
0
        public static AllPlatmapEntity GetById(System.String platCode, string zoneId = "")
        {
            var provider = new AllPlatmapProvider(zoneId);

            return(provider.GetById(platCode));
        }