public void AddTicket(Ticket ticket) { _insecticContext.Tickets.Add(ticket); _insecticContext.SaveChanges(); }
public void AddNote(Note note) { _insecticContext.Notes.Add(note); _insecticContext.SaveChanges(); }
public void AddComment(int ticketId, Comment comment) { comment.CommentDate = DateTime.Now; _insecticContext.TicketComments.Add(comment); _insecticContext.SaveChanges(); }