public static bool Update(CrossladderExchangerecordEntity crossladderExchangerecordEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new CrossladderExchangerecordProvider(zoneId);

            return(provider.Update(crossladderExchangerecordEntity, trans));
        }
        public static List <CrossladderExchangerecordEntity> GetAll(string zoneId = "")
        {
            var provider = new CrossladderExchangerecordProvider(zoneId);

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

            return(provider.Delete(idx, trans));
        }
        public static CrossladderExchangerecordEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new CrossladderExchangerecordProvider(zoneId);

            return(provider.GetById(idx));
        }