Ejemplo n.º 1
0
        // will return 01/01/0001 00:00:00 if there is no close date !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
        public DateTime GetClosedDate()
        {
            SqlConnection conn = DB.Connection();

            conn.Open();

            // SqlCommand cmd = new SqlCommand("SELECT COUNT(id) FROM tickets WHERE open_status = 1;", conn);

            SqlCommand cmd = new SqlCommand("SELECT * FROM tickets WHERE id = @TicketId AND open_status = 0;", conn);

            cmd.Parameters.Add(new SqlParameter("@TicketId", this.GetId()));
            SqlDataReader rdr = cmd.ExecuteReader();

            DateTime closeDate = new DateTime();

            while (rdr.Read())
            {
                closeDate = rdr.GetDateTime(10);
            }

            DB.CloseSqlConnection(conn, rdr);

            return(closeDate);
        }
Ejemplo n.º 2
0
 public static void DeleteAll()
 {
     DB.TableDeleteAll("tickets");
 }