static void Main(string[] args)
        {
            Console.Clear();

            /*
             * LoadDataFromFile() will do precise that, will read the data file ("Temperatur_Data.cvs")
             * and load its data to the EF created database.
             * In order to have a way to avoid the mistake of loading the data "unintentionally",
             * I commented the line and implemented a Method-Secure-Question inside the method.
             */

            //datos.LoadDataFromFile(@"RawData/Temperatur_Data.cvs"); //Uncomment to use.

            bool control = true;

            while (control)
            {
                control = Menu();
            }

            datos.Close();
        }