Beispiel #1
0
        //ASSIGNED TICKET
        //project manager assign ticket to developer
        public void assignTicket(AssignTicketViewModel model)
        {
            TicketRepo.Assign(model);
            TicketNotification notification = new TicketNotification(model.DeveloperId, model.TicketId, true);

            TicketNotificationRepo.Add(notification);
        }