public AthletController(IMapper mapper, IAthletRepository athletRepository)
 {
     _mapper           = mapper;
     _athletRepository = athletRepository;
 }
示例#2
0
 public AthletProgressController(IAthletService athletService, IMapper mapper, IAthletRepository athletRepository)
 {
     _athletService    = athletService;
     _mapper           = mapper;
     _athletRepository = athletRepository;
 }
 public AthletService(IAthletRepository athletRepository)
 {
     _athletRepository = athletRepository;
 }