Exemplo n.º 1
0
 public BlogController(JoDiceDbContext context,
                       IMapper mapper,
                       IBlogRepository blogRepository)
 {
     _context = context;
     _mapper = mapper;
     _blogRepository = blogRepository;
 }
 public JobSeekerPanelController(JoDiceDbContext context,
                                 IMapper mapper,
                                 IJobRepository jobRepository)
 {
     _context       = context;
     _mapper        = mapper;
     _jobRepository = jobRepository;
 }
Exemplo n.º 3
0
 public TagRepository(JoDiceDbContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public ContentRepository(JoDiceDbContext context)
 {
     _context = context;
 }
 public DepartmentRepository(JoDiceDbContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public CompanyRepository(JoDiceDbContext context)
 {
     _context = context;
 }
Exemplo n.º 7
0
 public AuthRepository(JoDiceDbContext context)
 {
     _context = context;
 }