예제 #1
0
 public ListsController(BRecruiterContext context)
 {
     _listManager = new ListManager(context);
 }
예제 #2
0
 public SkillsController(BRecruiterContext context)
 {
     _skillManager     = new SkillManager(context);
     _candidateManager = new CandidateManager(context);
 }
예제 #3
0
 public GraphManager(BRecruiterContext context)
 {
     _context = context;
 }
예제 #4
0
 public ExampleController(BRecruiterContext context)
 {
     _context = context;
 }
예제 #5
0
 public CandidatesController(BRecruiterContext context)
 {
     _context          = context;
     _candidateManager = new CandidateManager(context);
 }
예제 #6
0
 public GraphController(BRecruiterContext context)
 {
     _graphManager = new GraphManager(context);
 }
예제 #7
0
 public ListManager(BRecruiterContext context)
 {
     _context = context;
 }
 public DashboardController(BRecruiterContext context)
 {
     _graphManager = new GraphManager(context);
 }
예제 #9
0
 public SkillManager(BRecruiterContext context)
 {
     _context = context;
 }
예제 #10
0
 public FilesController(BRecruiterContext context)
 {
     candidateManager = new CandidateManager(context);
 }
예제 #11
0
 public CandidateManager(BRecruiterContext context)
 {
     _context = context;
 }