28 lines
692 B
C#
28 lines
692 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BASEBL
|
|||
|
|
{
|
|||
|
|
public class GlobalBL
|
|||
|
|
{
|
|||
|
|
public const string LLAVE = "NumSolicitud";
|
|||
|
|
|
|||
|
|
private static GlobalBL instanciaGlobalBL;
|
|||
|
|
protected GlobalBL(){ }
|
|||
|
|
|
|||
|
|
public static GlobalBL InstanciaGlobalBL()
|
|||
|
|
{
|
|||
|
|
if (instanciaGlobalBL == null)
|
|||
|
|
instanciaGlobalBL = new GlobalBL();
|
|||
|
|
|
|||
|
|
return instanciaGlobalBL;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string sCantidadRegistros { get; set; }
|
|||
|
|
public string sErrorErrorWebServiceVision2020 { get; set; }
|
|||
|
|
public string strValorLlave{ get; set; }
|
|||
|
|
}
|
|||
|
|
}
|