public void EventStop(PULSO_Event _e)
 {
     if (EventEnd != null)
     {
         EventEnd.Invoke(_e);
     }
 }
    public bool EventTryStart(PULSO_Event _e)
    {
        if (EventStart != null)
        {
            EventStart.Invoke(_e);
        }

        return(true);
    }