//index
 public ActionResult Index()
 {
     return(View(positionService.ReturnAllPositions()));
 }
Exemple #2
0
 public ActionResult Create()
 {
     ViewBag.Teams     = teamServices.ReturnAllTeams().ToList();
     ViewBag.Positions = positionServices.ReturnAllPositions().ToList();
     return(View());
 }