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