public void CreateAnIntership(string company, string position, string paid, string city, string email, string description)
        {
            InternshipService _internshipService = new InternshipService(settings);

            Internship internship = new Internship();

            internship.City        = city;
            internship.Company     = company;
            internship.Position    = position;
            internship.Paid        = paid;
            internship.Email       = email;
            internship.Description = description;


            _internshipService.CreateInternship(internship);
        }