public ActionResult AddTicketTypeComponent(int ticketTypeId, int componentType, string componentName)
        {
            var component = _kanbanService.AddTicketTypeComponent(
                ticketTypeId, componentType, componentName);

            return(PartialView("_TicketTypeComponent", component));
        }