Example #1
0
 public GroupController(ILogger <GroupController> logger,
                        IGroupService groupService,
                        VutbuDbContext dbContext)
 {
     _logger       = logger;
     _groupService = groupService;
     _dbContext    = dbContext;
 }
Example #2
0
 public GroupService(VutbuDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public ObfuscateService(VutbuDbContext dbContext, IUserService userService)
 {
     _dbContext   = dbContext;
     _userService = userService;
 }
Example #4
0
 public UserService(VutbuDbContext dbContext)
 {
     _dbContext = dbContext;
 }