Ejemplo n.º 1
0
        public CodesDB.AppointmentTypeDataTable Load()
        {
            this.sqlDa.SelectCommand = sqlSelectAll;

            CodesDB.AppointmentTypeDataTable dt = new CodesDB.AppointmentTypeDataTable();
            Fill(dt);
            return(dt);
        }
Ejemplo n.º 2
0
        public CodesDB.AppointmentTypeDataTable Load(string AppointmentTypeCode)
        {
            this.sqlDa.SelectCommand = sqlSelect;
            this.sqlSelect.Parameters.Clear();
            this.sqlSelect.CommandText = "[AppointmentTypeSelectByAppointmentTypeCode]";
            this.sqlSelect.Parameters.Add(new System.Data.SqlClient.SqlParameter("@RETURN_VALUE", System.Data.SqlDbType.Int, 4, System.Data.ParameterDirection.ReturnValue, false, ((System.Byte)(10)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));
            this.sqlSelect.Parameters.Add(new System.Data.SqlClient.SqlParameter("@AppointmentTypeCode", System.Data.SqlDbType.NVarChar, 4, System.Data.ParameterDirection.Input, false, ((System.Byte)(10)), ((System.Byte)(0)), "", System.Data.DataRowVersion.Current, null));

            this.sqlSelect.Parameters["@AppointmentTypeCode"].Value = AppointmentTypeCode;

            CodesDB.AppointmentTypeDataTable dt = new CodesDB.AppointmentTypeDataTable();
            Fill(dt);
            return(dt);
        }