/// <summary>
        /// Uses the model for the Inventions form and fills the appropriate data fields
        /// </summary>
        /// <returns> Page with table containing data according to the model </returns>
        public ActionResult InventionsForm()
        {
            using (var e = new EntityContext())
            {
                var data = DataForms.GetInventionsForm(SessionHelper.GetSessionUser(), e);

                var model = new InventionsModel.Form()
                {
                    Inventions = data.ProjectNumber.Select(p =>
                                                           new InventionsModel.Item()
                    {
                        Status        = p.Status,
                        ProjectNumber = p.Project_Number1,
                        ProjectTitle  = p.Project_Title
                    }).ToList()
                };

                return(View(model));
            }
        }