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