コード例 #1
0
 public void GuardarNombreLider(string sesion, string NombreLider)
 {
     if (!String.IsNullOrEmpty(sesion) && !String.IsNullOrEmpty(NombreLider))
     {
         cache.Remove(sesion + "-NombreLider");
         cache.Set(sesion + "-NombreLider", CacheFunction.GuardarByte(NombreLider));
         _bussinessRepository.GuardarMensajesPantallaExito(sesion, true);
     }
 }