Ejemplo n.º 1
0
        //create QA event
        public void createQAEvent(QA_Event myQA)
        {
            try
            {
                SqlConnection myConnection = Connection.GetConnection();
                SqlCommand    cmd          = new SqlCommand();
                cmd.CommandText = "CreateQAEvent";
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.Connection  = myConnection;

                //this populates database
                cmd.Parameters.AddWithValue("@QAID", myQA.QaID);
                cmd.Parameters.AddWithValue("UserID", myQA.UserID);
                cmd.Parameters.AddWithValue("ProjectID", myQA.ProjectID);
                cmd.Parameters.AddWithValue("Timestamp", myQA.Timestamp);
                cmd.Parameters.AddWithValue("Status", myQA.Status);
                cmd.Parameters.AddWithValue("Priority", myQA.Priority);
                cmd.Parameters.AddWithValue("ModuleID", myQA.ModuleId);
                cmd.Parameters.AddWithValue("TestPlanID", myQA.TestPlanId);
                cmd.Parameters.AddWithValue("SupportDocID", myQA.SupportDocId);
                cmd.Parameters.AddWithValue("Visible", myQA.Visible);

                int rowsEffected = 0;

                myConnection.Open();
                rowsEffected = cmd.ExecuteNonQuery();
                myConnection.Close();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 2
0
        //view QA event
        public int viewQAEvent(QA_Event myQA)
        {
            SqlConnection myConnection = Connection.GetConnection();
            SqlCommand    cmd          = new SqlCommand();

            cmd.CommandText = "ViewQAEvent";
            cmd.CommandType = CommandType.StoredProcedure;
            cmd.Connection  = myConnection;

            cmd.Parameters.AddWithValue("@QAID", myQA.QaID);

            myConnection.Open();

            int output = Convert.ToInt32(cmd.ExecuteScalar());

            myConnection.Close();

            return(output);
        }
Ejemplo n.º 3
0
        public void viewQAEvent(QA_Event myQA)
        {
            StringBuilder table = new StringBuilder();

            QA_Event qa = new QA_Event();

            try
            {
                SqlConnection myConnection = Connection.GetConnection();
                SqlCommand    cmd          = new SqlCommand();
                cmd.CommandText = "View";
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.Connection  = myConnection;

                SqlDataAdapter sda = new SqlDataAdapter();
                sda.SelectCommand = cmd;
                //  DataTable dbdataset = new DataTable();
                //sda.Fill(dbdataset);

                using (SqlDataReader rdr = cmd.ExecuteReader())
                {
                    table.Append("<table border='1'>");
                    table.Append("<tr><th>ID</th><th>ID2</th>");
                    table.Append("</tr>");

                    while (rdr.Read())
                    {
                        table.Append("<tr>");
                        table.Append("<td>" + rdr[0] + "</td>");
                        table.Append("<td>" + rdr[1] + "</td>");
                        table.Append("/tr>");
                    }
                }
            }

            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 4
0
        public void QAEvent(int qaid, int userid, int projectid, DateTime timestamp, string status, string priority, int moduleid, int testplanid, int supportdocid, string visible)
        {
            QA_Event qa = new QA_Event();

            // creates object to get Connection


            // creates object to get Connection
            //QABL qa = new QABL();


            this.QaID         = qaid;
            this.UserID       = userid;
            this.ProjectID    = projectid;
            this.Timestamp    = timestamp;
            this.Status       = status;
            this.Priority     = priority;
            this.ModuleId     = moduleid;
            this.TestPlanId   = testplanid;
            this.SupportDocId = supportdocid;
            this.Visible      = visible;

            //qa.createQAEvent(this);
        }