public ShootingSessionService(IShootingSessionRepository iRepository)
 {
     this.repository = iRepository;
 }
 public ShootingSessionService()
 {
     this.repository = new ShootingSessionRepository();
 }