Esempio n. 1
0
 public ValuesController(ReCommandDbContext dbContext, IUserService userService, IContactService contactService)
 {
     _dbContext      = dbContext;
     _userService    = userService;
     _contactService = contactService;
 }
Esempio n. 2
0
 public ProjectCreatedIntergrationEventHandler(ReCommandDbContext dbContext, IUserService userService, IContactService contactService)
 {
     _dbContext      = dbContext;
     _userService    = userService;
     _contactService = contactService;
 }
Esempio n. 3
0
 public ProjectJoinedIntergrationEventHandler(ReCommandDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Esempio n. 4
0
 public RecommandController(ReCommandDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public ProejctViewedIntergrationEventHandler(ReCommandDbContext dbContext)
 {
     _dbContext = dbContext;
 }