Example #1
0
        public void createQualityTest(int prodID, IQualityTest iq)
        {
            SqlConnection conn = getConnection();

            SqlCommand command = new SqlCommand("CreateQualityTestNoComments", conn);

            command.CommandType = System.Data.CommandType.StoredProcedure;

            command.Parameters.Add(new SqlParameter("@ProductionID", prodID));
            command.Parameters.Add(new SqlParameter("@CheckedDate", iq.getCheckedDate()));
            command.Parameters.Add(new SqlParameter("@QualityTestActivities", iq.getQTA()));
            command.Parameters.Add(new SqlParameter("@ExpectedResult", iq.getER()));
            command.Parameters.Add(new SqlParameter("@Employee", iq.getEmployee()));
            command.Parameters.Add(new SqlParameter("@Done", iq.getDone()));
            command.Parameters.Add(new SqlParameter("@Approved", iq.getApproved()));

            command.ExecuteNonQuery();

            conn.Close();
            conn.Dispose();
        }
Example #2
0
        public void changeQualityTest(IQualityTest iq)
        {
            SqlConnection conn = getConnection();

            SqlCommand command = new SqlCommand("UpdateQualityTest", conn);

            command.CommandType = System.Data.CommandType.StoredProcedure;
            #region comments

            /*
             * @QualityTestID INT,
             * @checkedDate DATE,
             * @QualityTestActivities varchar(255),
             * @ExpectedResult varchar(255),
             * @employee varchar(255),
             * @comment varchar(255),
             * @result varchar(255),
             * @done BIT,
             * @approved BIT
             */
            #endregion

            command.Parameters.Add(new SqlParameter("@QualityTestID", iq.getID()));
            command.Parameters.Add(new SqlParameter("@CheckedDate", iq.getCheckedDate()));
            command.Parameters.Add(new SqlParameter("@QualityTestActivities", iq.getQTA()));
            command.Parameters.Add(new SqlParameter("@ExpectedResult", iq.getER()));
            command.Parameters.Add(new SqlParameter("@employee", iq.getEmployee()));
            command.Parameters.Add(new SqlParameter("@done", iq.getDone()));
            command.Parameters.Add(new SqlParameter("@approved", iq.getApproved()));
            command.Parameters.Add(new SqlParameter("@result", iq.getResult()));
            command.Parameters.Add(new SqlParameter("@comment", iq.getComment()));

            command.ExecuteNonQuery();

            conn.Close();
            conn.Dispose();
        }
Example #3
0
        public void changeQualityTest(IQualityTest iq)
        {
            SqlConnection conn = getConnection();

            SqlCommand command = new SqlCommand("UpdateQualityTest", conn);
            command.CommandType = System.Data.CommandType.StoredProcedure;
            #region comments
            /*
           @QualityTestID INT,
           @checkedDate DATE,
           @QualityTestActivities varchar(255),
           @ExpectedResult varchar(255),
           @employee varchar(255),
           @comment varchar(255),
           @result varchar(255),
           @done BIT,
           @approved BIT
           */
            #endregion

            command.Parameters.Add(new SqlParameter("@QualityTestID", iq.getID()));
            command.Parameters.Add(new SqlParameter("@CheckedDate", iq.getCheckedDate()));
            command.Parameters.Add(new SqlParameter("@QualityTestActivities", iq.getQTA()));
            command.Parameters.Add(new SqlParameter("@ExpectedResult", iq.getER()));
            command.Parameters.Add(new SqlParameter("@employee", iq.getEmployee()));
            command.Parameters.Add(new SqlParameter("@done", iq.getDone()));
            command.Parameters.Add(new SqlParameter("@approved", iq.getApproved()));
            command.Parameters.Add(new SqlParameter("@result", iq.getResult()));
            command.Parameters.Add(new SqlParameter("@comment", iq.getComment()));

            command.ExecuteNonQuery();

            conn.Close();
            conn.Dispose();

        }
Example #4
0
        public void createQualityTest(int prodID, IQualityTest iq)
        {
            SqlConnection conn = getConnection();

            SqlCommand command = new SqlCommand("CreateQualityTestNoComments", conn);
            command.CommandType = System.Data.CommandType.StoredProcedure;

            command.Parameters.Add(new SqlParameter("@ProductionID", prodID));
            command.Parameters.Add(new SqlParameter("@CheckedDate", iq.getCheckedDate()));
            command.Parameters.Add(new SqlParameter("@QualityTestActivities", iq.getQTA()));
            command.Parameters.Add(new SqlParameter("@ExpectedResult", iq.getER()));
            command.Parameters.Add(new SqlParameter("@Employee", iq.getEmployee()));
            command.Parameters.Add(new SqlParameter("@Done", iq.getDone()));
            command.Parameters.Add(new SqlParameter("@Approved", iq.getApproved()));

            command.ExecuteNonQuery();

            conn.Close();
            conn.Dispose();

        }