示例#1
0
        public InjuriesController()
        {
            GameContext context = new GameContext();

            _repository = new InjuryRepository(context);
        }
示例#2
0
 public InjuryService(InjuryRepository injuryRepository)
 {
     _injuryRepository = injuryRepository;
 }