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