Guest User

Untitled

a guest
Jan 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. public Resultado Procesar_Respuesta_Estructurada(ref object ObjetoIN, ref string Login, string NombreMetodo)
  2. {
  3. int i = 0;
  4. Resultado ObjetoOUT = default(Resultado);
  5. bool Errors_Warning = false;
  6. Utilitarios OUtil = default(Utilitarios);
  7. try
  8. {
  9.  
  10. OUtil = new Utilitarios();
  11. ObjetoOUT = new Resultado();
  12.  
  13. ObjetoOUT.Success = ObjetoIN.Success;
  14. ObjetoOUT.ExistWarnings = ObjetoIN.ExistWarnings;
  15. ObjetoOUT.Items = ObjetoIN.Items;
  16.  
  17. if ((ObjetoIN.Errors != null) && ObjetoIN.Errors.Length > 0)
  18. {
  19. Errors_Warning = true;
Add Comment
Please, Sign In to add comment