public async Task <ActionResult <Team> > AddTeam(Team team)
 {
     try{
         return(new OkObjectResult(await _sponsorService.AddTeam(team)));
     }
     catch (System.Exception ex) {
         throw ex;
     }
 }