public static void CleanData() { if (id_contenedor > 0) { contenedorCEN.Borrar(id_contenedor); } }
public static void CleanData() { if (contenedor_id > 0 && punto_id > 0) { contenedorCEN.Borrar(contenedor_id); puntoCEN.Borrar(punto_id); } }
public static void CleanData() { if (contenedores.Count > 0) { foreach (var item in id_contenedores) { contenedorCEN.Borrar(item); } } }
public HttpResponseMessage Borrar(int p_contenedor_oid) { // CAD, CEN ContenedorRESTCAD contenedorRESTCAD = null; ContenedorCEN contenedorCEN = null; try { SessionInitializeTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } int id = new UsuarioCEN().CheckToken(token); contenedorRESTCAD = new ContenedorRESTCAD(session); contenedorCEN = new ContenedorCEN(contenedorRESTCAD); contenedorCEN.Borrar(p_contenedor_oid); SessionCommit(); } catch (Exception e) { SessionRollBack(); if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.DataLayerException)) { throw new HttpResponseException(HttpStatusCode.BadRequest); } else { throw new HttpResponseException(HttpStatusCode.InternalServerError); } } finally { SessionClose(); } // Return 204 - No Content return(this.Request.CreateResponse(HttpStatusCode.NoContent)); }
public void WhenEliminoElContenedor() { contenedorCEN.Borrar(id_contenedor); }
public static void CleanData() { accionReciclarCEN.Borrar(accionReciclarId); contenedorCEN.Borrar(contenedorId); }