public void SendDataForm(FormCommandDTO formCommandDTO) { if (sendDataFromFormEvent != null) { sendDataFromFormEvent(this, new UserEventArgs(formCommandDTO)); } }
public bool SendDataForm(FormCommandDTO formCommandDTO) { if (sendDataFromFormEvent != null) { sendDataFromFormEvent(this, new UserEventArgs(formCommandDTO)); return(true); } else { return(false); } }
public UserEventArgs(FormCommandDTO dt) { sendingInformation = dt; }