public Company Create(Company newCompany)
 {
     newCompany.Id = _repo.Create(newCompany);
     return(newCompany);
 }