public HomeController( IMatchdaysService matchdaysService, IUsersService usersService, IRostersService rostersService) { this.matchdaysService = matchdaysService; this.usersService = usersService; this.rostersService = rostersService; }
public RostersController( IPlayersService playersService, IRostersService rostersService, IMatchdaysService matchdaysService, IUsersService usersService) { this.playersService = playersService; this.rostersService = rostersService; this.matchdaysService = matchdaysService; this.usersService = usersService; }
public RostersServiceTests() { this.rostersService = this.Provider.GetService <IRostersService>(); this.mapper = this.Provider.GetService <IMapper>(); }