public CertificationsController(ICertificationsRepository context)
 {
     _context = context;
 }
Example #2
0
 public CertificationsController(ICertificationsRepository repository, IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }