Пример #1
0
        public static bool Update(DicCrossladderexchangeEntity dicCrossladderexchangeEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new DicCrossladderexchangeProvider(zoneId);

            return(provider.Update(dicCrossladderexchangeEntity, trans));
        }
Пример #2
0
        public static List <DicCrossladderexchangeEntity> GetAll(string zoneId = "")
        {
            var provider = new DicCrossladderexchangeProvider(zoneId);

            return(provider.GetAll());
        }
Пример #3
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            DicCrossladderexchangeProvider provider = new DicCrossladderexchangeProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Пример #4
0
        public static DicCrossladderexchangeEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new DicCrossladderexchangeProvider(zoneId);

            return(provider.GetById(idx));
        }