Beispiel #1
0
        public static List <GoldbarRecordEntity> GetAll(string zoneId = "")
        {
            var provider = new GoldbarRecordProvider(zoneId);

            return(provider.GetAll());
        }
Beispiel #2
0
        public static bool Update(GoldbarRecordEntity goldbarRecordEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new GoldbarRecordProvider(zoneId);

            return(provider.Update(goldbarRecordEntity, trans));
        }
Beispiel #3
0
        public static GoldbarRecordEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new GoldbarRecordProvider(zoneId);

            return(provider.GetById(idx));
        }