Beispiel #1
0
        public void AddTicket()
        {
            TicketTitleCheck();
            TicketCategoryIDCheck();
            TicketRatingCheck();
            TicketCommentCheck();
            TicketNameCheck();
            TicketPhoneNumberCheck();
            TicketEmailCheck();
            SqlStoredProcedures sp = new SqlStoredProcedures();

            sp.SupportAddTicket(this.ticketTitle, this.ticketCategoryID, this.rating, this.comment, this.email, this.phoneNumber, this.name);
        }