public void ManagementCompany()
        {
            //Arrange
            ManagementController Management = new ManagementController();

            //Act
            ActionResult result = Management.ManagementCompany() as ActionResult;

            Assert.IsNotNull(result);
        }
        public void Index()
        {
            //Arrange
            ManagementController Management = new ManagementController();

            //Act
            ActionResult result = Management.Index() as ActionResult;

            //Assert
            Assert.IsNotNull(result);
        }