public void DeleteAllConfirmation_ReturnsCorrectView_True()
        {
            StylistsController controller = new StylistsController();

            ActionResult DeleteAllConfirmation = controller.DeleteAllConfirmation();

            Assert.IsInstanceOfType(DeleteAllConfirmation, typeof(ViewResult));
        }