public static List <GoldbarRecordEntity> GetAll(string zoneId = "") { var provider = new GoldbarRecordProvider(zoneId); return(provider.GetAll()); }
public static bool Update(GoldbarRecordEntity goldbarRecordEntity, DbTransaction trans = null, string zoneId = "") { var provider = new GoldbarRecordProvider(zoneId); return(provider.Update(goldbarRecordEntity, trans)); }
public static GoldbarRecordEntity GetById(System.Int32 idx, string zoneId = "") { var provider = new GoldbarRecordProvider(zoneId); return(provider.GetById(idx)); }