public static string SELECT(PromocionInfo item) { return(Sesion_Promocion.SELECT(new QueryConditions() { Promocion = item, ESesionPromocion = ESesionPromocion.Promocion }, false)); }
public void CopyValues(Sesion_Promocion source) { if (source == null) { return; } _record.CopyValues(source.Base.Record); _hora = source.Hora; }
// called to copy objects data from list private void Fetch(IDataReader reader) { this.RaiseListChangedEvents = false; IsReadOnly = false; while (reader.Read()) { this.AddItem(Sesion_Promocion.GetChild(reader).GetInfo()); } IsReadOnly = true; this.RaiseListChangedEvents = true; }
public void CopyFrom(Sesion_Promocion source) { _base.CopyValues(source); }