public static CarePlanDTOA Convert(EntityEN en, NHibernate.ISession session = null) { CarePlanDTOA dto = null; CarePlanRESTCAD carePlanRESTCAD = null; CarePlanCEN carePlanCEN = null; CarePlanCP carePlanCP = null; if (en != null) { dto = new CarePlanDTOA(); carePlanRESTCAD = new CarePlanRESTCAD(session); carePlanCEN = new CarePlanCEN(carePlanRESTCAD); carePlanCP = new CarePlanCP(session); CarePlanEN enHijo = carePlanRESTCAD.ReadOIDDefault(en.Id); // // Attributes dto.Id = en.Id; dto.Name = en.Name; dto.Description = en.Description; // // TravesalLink /* Rol: CarePlan o--> CarePlanTemplate */ dto.CarePlanTemplate = CarePlanTemplateAssembler.Convert((CarePlanTemplateEN)enHijo.Template, session); // // Service } return(dto); }
public HttpResponseMessage Modify(int idCarePlan, [FromBody] CarePlanDTO dto) { // CAD, CEN, returnValue CarePlanRESTCAD carePlanRESTCAD = null; CarePlanCEN carePlanCEN = null; CarePlanDTOA returnValue = null; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); carePlanRESTCAD = new CarePlanRESTCAD(session); carePlanCEN = new CarePlanCEN(carePlanRESTCAD); // Modify carePlanCEN.Modify(idCarePlan, dto.Name , dto.Description ); // Return modified object returnValue = CarePlanAssembler.Convert(carePlanRESTCAD.ReadOIDDefault(idCarePlan), session); SessionCommit(); } catch (Exception e) { SessionRollBack(); if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.DataLayerException)) { throw new HttpResponseException(HttpStatusCode.BadRequest); } else { throw new HttpResponseException(HttpStatusCode.InternalServerError); } } finally { SessionClose(); } // Return 404 - Not found if (returnValue == null) { return(this.Request.CreateResponse(HttpStatusCode.NotFound)); } // Return 200 - OK else { response = this.Request.CreateResponse(HttpStatusCode.OK, returnValue); return(response); } }
public HttpResponseMessage New_([FromBody] CarePlanDTO dto) { // CAD, CEN, returnValue, returnOID CarePlanRESTCAD carePlanRESTCAD = null; CarePlanCEN carePlanCEN = null; CarePlanDTOA returnValue = null; int returnOID = -1; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); carePlanRESTCAD = new CarePlanRESTCAD(session); carePlanCEN = new CarePlanCEN(carePlanRESTCAD); // Create returnOID = carePlanCEN.New_( dto.Name //Atributo Primitivo: p_name , //Atributo OID: p_scenario // attr.estaRelacionado: true dto.Scenario_oid // association role , dto.Description //Atributo Primitivo: p_description , //Atributo OID: p_template // attr.estaRelacionado: true dto.Template_oid // association role ); SessionCommit(); // Convert return returnValue = CarePlanAssembler.Convert(carePlanRESTCAD.ReadOIDDefault(returnOID), session); } catch (Exception e) { SessionRollBack(); if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.DataLayerException)) { throw new HttpResponseException(HttpStatusCode.BadRequest); } else { throw new HttpResponseException(HttpStatusCode.InternalServerError); } } finally { SessionClose(); } // Return 201 - Created response = this.Request.CreateResponse(HttpStatusCode.Created, returnValue); // Location Header /* * Dictionary<string, object> routeValues = new Dictionary<string, object>(); * * // TODO: y rolPaths * routeValues.Add("id", returnOID); * * uri = Url.Link("GetOIDCarePlan", routeValues); * response.Headers.Location = new Uri(uri); */ return(response); }