コード例 #1
0
 public CharityEventService(
     CharityHubContext context,
     IMapper mapper)
 {
     this._context = context;
     this._mapper  = mapper;
 }
コード例 #2
0
 public CharityService(
     CharityHubContext context,
     IUserService userService,
     IMapper mapper)
 {
     _context         = context;
     this.userService = userService;
     this.mapper      = mapper;
 }
コード例 #3
0
ファイル: UserService.cs プロジェクト: admal/CharityHub
 public UserService(CharityHubContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
コード例 #4
0
 public EventNotificationQueryService(CharityHubContext context)
 {
     _context = context;
 }