Exemple #1
0
        public int InsertarCompra(E_Facturacion eFact)
        {
            SqlConnection strcon = new SqlConnection();

            strcon.ConnectionString = Conexion.SqlConex;
            strcon.Open();
            SqlCommand cmd = new SqlCommand();

            cmd.Connection  = strcon;
            cmd.CommandText = "InsertarCompra";
            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter parIdSolar = new SqlParameter();

            parIdSolar.ParameterName = "@IdSolar";
            parIdSolar.SqlDbType     = SqlDbType.Int;
            parIdSolar.Size          = 10;
            parIdSolar.Value         = eFact.IdSolar;
            cmd.Parameters.Add(parIdSolar);

            return(cmd.ExecuteNonQuery());
        }
        public int N_InsertarCompra(E_Facturacion eFact)
        {
            int rsp = D_Facturacion.InsertarCompra(eFact);

            return(rsp);
        }