BolfTracker.Web.GamePanelViewModel.HoleIsPushed C# (CSharp) 메소드

HoleIsPushed() 공개 메소드

public HoleIsPushed ( int hole ) : bool
hole int
리턴 bool
        public bool HoleIsPushed(int hole)
        {
            return Shots.Any(s => s.Hole.Id == hole && s.ShotType.Id == ShotTypePush);
        }