示例#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
 public UserService(CharityHubContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
示例#4
0
 public EventNotificationQueryService(CharityHubContext context)
 {
     _context = context;
 }