예제 #1
0
 public static string SELECT(ParteAsistenciaInfo item)
 {
     return(Concepto_Parte.SELECT(new QueryConditions()
     {
         ParteAsistencia = item
     }, false));
 }
예제 #2
0
        // called to copy objects data from list
        private void Fetch(IDataReader reader)
        {
            this.RaiseListChangedEvents = false;

            IsReadOnly = false;

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

            IsReadOnly = true;

            this.RaiseListChangedEvents = true;
        }
		public void CopyValues(Concepto_Parte source)
		{
			if (source == null) return;
			
			_record.CopyValues(source.Base.Record);
		}
예제 #4
0
 public void CopyFrom(Concepto_Parte source)
 {
     _base.CopyValues(source);
 }