public string DeleteCurrentInternship(string internshipId)
        {
            InternshipService _internshipService = new InternshipService(settings);

            _internshipService.DeleteInternship(internshipId);
            return("Deleted!");
        }