// GET: CreateTable
        public ActionResult Index()
        {
            DataHydrator dataHydrator = new DataHydrator();

            IList<RelationsModel> AllRelationsWithNoTuples = dataHydrator.GetAllRelationModelFromDatabaseWithoutTuplesForView();

            return View(AllRelationsWithNoTuples);
        }