Пример #1
0
 public ActivityService(GoldGoalsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #2
0
 public LoginService(GoldGoalsContext context)
 {
     _context = context;
 }
Пример #3
0
 public UserService(GoldGoalsContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Пример #4
0
 public ReportService(ActivityService activityService, IMapper mapper, GoldGoalsContext context)
 {
     _activityService = activityService;
     _mapper          = mapper;
     _context         = context;
 }