TFS_ANTIGUO/SIGPC/wcfSigdd/AyABL/GlobalBL.CS

28 lines
692 B
C#
Raw Permalink Normal View History

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; }
}
}