TFS_ANTIGUO/SIGPC/AyABL/GlobalBL.CS
kledezma 7fdadc4709 KLB
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C519
2021-01-22 15:05:35 +00:00

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