예제 #1
0
 public static string SELECT(ParteAsistenciaInfo item)
 {
     return(Clase_Parte.SELECT(new QueryConditions()
     {
         ParteAsistencia = item
     }, false));
 }
예제 #2
0
        public void CopyValues(Clase_Parte source)
        {
            if (source == null)
            {
                return;
            }

            _record.CopyValues(source.Base.Record);
        }
예제 #3
0
        // called to copy objects data from list
        private void Fetch(IDataReader reader)
        {
            this.RaiseListChangedEvents = false;

            IsReadOnly = false;

            while (reader.Read())
            {
                this.AddItem(Clase_Parte.GetChild(reader).GetInfo());
            }

            IsReadOnly = true;

            this.RaiseListChangedEvents = true;
        }
 public void CopyFrom(Clase_Parte source)
 {
     _base.CopyValues(source);
 }