public UserRepository(InetContext ctx, IMapper mapper)
 {
     _context = ctx;
     _mapper  = mapper;
 }
示例#2
0
 public AccountRepository(InetContext ctx, IMapper mapper)
 {
     _context = ctx;
     _mapper  = mapper;
 }
示例#3
0
 public UnitOfWork(string connString, IMapper mapper)
 {
     _context = new InetContext(connString);
     _mapper  = mapper;
 }
 public ServiceRepository(InetContext ctx, IMapper mapper)
 {
     _context = ctx;
     _mapper  = mapper;
 }