示例#1
0
        internal void RemovePoint(Guid id)
        {
            _log.DebugEx("> RemovePoint START.");

            var removingGeoPoint = GeoCalculatiorFacade.GetUserSessionPointById(id);

            GeoCalculatiorFacade.DeleteUserSessionPoint(id);
            OnPointDeleted.Invoke(removingGeoPoint.PointNumber);

            _log.DebugEx("> RemovePoint END.");
        }