public async Task <ActionResult <Internship> > PostInternship(Internship internship)
        {
            await _repository.CreateInternship(internship);

            return(CreatedAtAction("GetInternship", new { id = internship.Id }, internship));
        }