/// <summary>
 /// Initializes Incident form and needed controllers
 /// </summary>
 public CreateIncident()
 {
     InitializeComponent();
     custCont = new CustomersController();
     incCont = new IncidentsController();
     proCont = new ProductController();
 }
 /// <summary>
 /// The form that is filled with values when loaded: MDI child of TechSupport form
 /// </summary>
 public OpenIncidents()
 {
     InitializeComponent();
     incidentController = new IncidentsController();
 }
 public OpenIncidentsByTech()
 {
     InitializeComponent();
     techController = new TechnicianController();
     incController = new IncidentsController();
 }