Beispiel #1
0
 public CompetitionService(IHostingEnvironment environment, MemeOffContext context, INodeComService nodeCom, UASContext uasContext)
 {
     this._environment = environment;
     this._context     = context;
     _nodeCom          = nodeCom;
     _uasContext       = uasContext;
 }
Beispiel #2
0
 public MemeOffController(ICompetitionService competitionService, IAuthService authService, MemeOffContext context)
 {
     _competitionService = competitionService;
     _authService        = authService;
     this._context       = context;
 }