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); } }
public dynamic ResumenComunidad(string sesion) { if (!String.IsNullOrEmpty(sesion)) { if (!cacheM.TryGetValue <JObject>(sesion + "-ResumenComunidad", out JObject valorRetorno)) { valorRetorno = _bussinessRepository.ResumenComunidad(sesion); cacheM.Set(sesion + "-ResumenComunidad", CacheFunction.GuardarByte(valorRetorno.ToString())); } return(valorRetorno); } return(string.Empty); }
public void GuardarDatosIntegrante(string sesion, string NombreIntegrante, string CelularIntegrante, double CapacidadAsignada) { if (!String.IsNullOrEmpty(sesion) && !String.IsNullOrEmpty(NombreIntegrante) && !String.IsNullOrEmpty(CelularIntegrante) && Double.TryParse(CapacidadAsignada.ToString(), out double price)) { cache.Remove(sesion + "-DatosIntegrante-NombreIntegrante"); cache.Set(sesion + "-DatosIntegrante-NombreIntegrante", CacheFunction.GuardarByte(NombreIntegrante)); cache.Remove(sesion + "-DatosIntegrante-CelularIntegrante"); cache.Set(sesion + "-DatosIntegrante-CelularIntegrante", CacheFunction.GuardarByte(CelularIntegrante)); cache.Remove(sesion + "-DatosIntegrante-CapacidadAsignda"); cache.Set(sesion + "-DatosIntegrante-CapacidadAsignda", CacheFunction.GuardarByte(CapacidadAsignada.ToString())); _bussinessRepository.GuardarMensajesPantallaExito(sesion, false); } }