コード例 #1
0
 public MessageRepository(DContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
コード例 #2
0
ファイル: UnitOfWork.cs プロジェクト: almearza/CoreAndAngular
 public UnitOfWork(DContext context, IMapper mapper)
 {
     this._mapper  = mapper;
     this._context = context;
 }
コード例 #3
0
 public LikesRepository(DContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
コード例 #4
0
 public UserRepository(DContext context, IMapper mapper)
 {
     _mapper       = mapper;
     this._context = context;
 }