コード例 #1
0
ファイル: DAPeriodo.cs プロジェクト: eincioch/ProyectoMedica
        public DataTable GetPeriodosByActividad(BE_Req_Periodo Request)
        {
            DataTable Rs = new DataTable();
            try
            {
                clsConection Obj = new clsConection();
                string Cadena = Obj.GetConexionString("Naylamp");

                using (SqlConnection cn = new SqlConnection(Cadena))
                {
                    cn.Open();

                    using (SqlCommand cm = new SqlCommand())
                    {
                        cm.CommandText = "sp_get_PeriodosByActividad";
                        cm.CommandType = CommandType.StoredProcedure;
                        cm.Parameters.AddWithValue("nPrdActividad", Request.nPrdActividad);
                        cm.Connection = cn;

                        using (SqlDataReader dr = cm.ExecuteReader())
                        {
                            Rs.Load(dr);
                        }
                    }
                }

            }
            catch (Exception)
            {
                throw;
            }

            return Rs;
        }
コード例 #2
0
        public BE_Res_Periodo get_PeriodoActual_ByActividad(BE_Req_Periodo Request)
        {
            BE_Res_Periodo Item = new BE_Res_Periodo();
            try
            {
                clsConection Obj = new clsConection();
                string Cadena = Obj.GetConexionString("Naylamp");

                using (SqlConnection cn = new SqlConnection(Cadena))
                {
                    cn.Open();

                    using (SqlCommand cm = new SqlCommand())
                    {
                        cm.CommandText = "sp_get_PeriodoActual_ByActividad";
                        cm.CommandType = CommandType.StoredProcedure;
                        cm.Parameters.AddWithValue("nPrdActividad", Request.nPrdActividad);
                        cm.Connection = cn;
                        using (SqlDataReader dr = cm.ExecuteReader())
                        {
                            while (dr.Read())
                            {
                                Item.cPrdDescripcion = dr.GetString(dr.GetOrdinal("cPrdDescripcion")).Trim();
                                Item.nPrdCodigo = dr.GetInt32(dr.GetOrdinal("nPrdCodigo"));
                            }
                        }
                    }
                }
            }
            catch (Exception)
            {
                throw;
            }
            return Item;
        }
コード例 #3
0
ファイル: BL_Periodo.cs プロジェクト: eincioch/ProyectoMedica
 public BE_Res_Periodo get_PeriodoActual_ByActividad(BE_Req_Periodo Request)
 {
     DAPeriodo ObjPeriodo = new DAPeriodo();
     return ObjPeriodo.get_PeriodoActual_ByActividad(Request);
 }
コード例 #4
0
ファイル: BL_Periodo.cs プロジェクト: eincioch/ProyectoMedica
 public DataTable GetPeriodosByActividad(BE_Req_Periodo Request)
 {
     DAPeriodo ObjPeriodo = new DAPeriodo();
     return ObjPeriodo.GetPeriodosByActividad(Request);
 }