Example #1
0
 public SQLPersonRepository(PersonSkillsContext context)
 {
     Context = context;
 }
Example #2
0
 public PersonService(IMapper mapper, PersonSkillsContext context)
 {
     _repository = new SQLPersonRepository(context);
     _mapper     = mapper;
 }