Exemplo n.º 1
0
 public CodingEventTagService(
     CodingEventsDbContext dbContext,
     ICodingEventRepository codingEventRepository,
     ITagRepository tagRepository
     )
 {
     _dbContext             = dbContext;
     _codingEventRepository = codingEventRepository;
     _tagRepository         = tagRepository;
 }
Exemplo n.º 2
0
 public OwnerService(
     CodingEventsDbContext dbContext,
     IAuthedUserService authedUserService,
     ICodingEventRepository codingEventRepository
     )
 {
     _dbContext             = dbContext;
     _authedUserService     = authedUserService;
     _codingEventRepository = codingEventRepository;
 }