/// <summary> /// /// </summary> /// <param name="DAL"></param> /// <returns></returns> public static ExpedienteDTO MapeoDALToDTO(Expediente DAL) { try { ExpedienteDTO expediente = new ExpedienteDTO(); expediente.ExpedienteId = DAL.ExpedienteId; expediente.UpdateAt = DAL.UpdateAt; expediente.CreatedAt = DAL.CreatedAt; expediente.Cuantia = DAL.Cuantia; expediente.Descripcion = DAL.Descripcion; expediente.DireccionEjecutado = DAL.DireccionEjecutado; expediente.DireccionTituloEjecutivo = DAL.DireccionTituloEjecutivo; expediente.EntidadEncargada = DAL.EntidadEncargada; expediente.FechaRadicacion = DAL.FechaRadicacion; expediente.Identificacion = DAL.Identificacion; expediente.NaturalezaObligacion = DAL.NaturalezaObligacion; expediente.Nombre = DAL.Nombre; //expediente.Obligacion = Obligacion.MapeoDALToDTO(DAL.Obligacion); expediente.UbicacionExpediente = DAL.UbicacionExpediente; // expediente.ObligacionId = DAL.ObligacionId; return(expediente); } catch (Exception) { return(null); } }
/// <summary> /// Este metodo convierte un DTO a DAL /// </summary> /// <param name="DTO">Parametro DTO</param> /// <returns>Objeto tipo DAL</returns> public static Documento MapeoDTOToDAL(DocumentoDTO item) { try { Documento documento = new Documento(); documento.DocumentoId = item.DocumentoId; documento.UpdateAt = item.UpdateAt; documento.CreatedAt = item.CreatedAt; if (item.Expediente != null) { documento.Expediente = Expediente.MapeoDTOToDAL(item.Expediente); } documento.ExpedienteId = item.ExpedienteId; documento.FechaDocumento = item.FechaDocumento; documento.FechaEntrega = item.FechaEntrega; documento.FechaRadicacion = item.FechaRadicacion; documento.FechaRecepcion = item.FechaRecepcion; documento.FuncionarioEntrega = item.FuncionarioEntrega; documento.FuncionarioRecibe = item.FuncionarioRecibe; documento.OficinaOrigen = item.OficinaOrigen; documento.Remitente = item.Remitente; documento.RutaDocumento = item.RutaDocumento; documento.TipoArchivo = item.TipoArchivo; documento.Estado = item.Estado; if (item.TipoDocumento != null) { documento.TipoDocumento = TipoDocumento.MapeoDTOToDAL(item.TipoDocumento); } documento.TipoDocumentoId = item.TipoDocumentoId; return(documento); }catch (Exception) { return(null); } }
/// <summary> /// Este metodo convierte un DAL a DTO /// </summary> /// <param name="DAL">Parametro DAL</param> /// <returns>Objeto tipo DTO</returns> public static DocumentoDTO MapeoDALToDTO(Documento DAL) { try { DocumentoDTO documento = new DocumentoDTO(); documento.DocumentoId = DAL.DocumentoId; documento.UpdateAt = DAL.UpdateAt; documento.CreatedAt = DAL.CreatedAt; if (DAL.Expediente != null) { documento.Expediente = Expediente.MapeoDALToDTO(DAL.Expediente); } documento.ExpedienteId = DAL.ExpedienteId; documento.FechaDocumento = DAL.FechaDocumento; documento.FechaEntrega = DAL.FechaEntrega; documento.FechaRadicacion = DAL.FechaRadicacion; documento.FechaRecepcion = DAL.FechaRecepcion; documento.FuncionarioEntrega = DAL.FuncionarioEntrega; documento.FuncionarioRecibe = DAL.FuncionarioRecibe; documento.OficinaOrigen = DAL.OficinaOrigen; documento.Remitente = DAL.Remitente; documento.RutaDocumento = DAL.RutaDocumento; documento.TipoArchivo = DAL.TipoArchivo; documento.Estado = DAL.Estado; if (DAL.TipoDocumento != null) { documento.TipoDocumento = TipoDocumento.MapeoDALToDTO(DAL.TipoDocumento); } documento.TipoDocumentoId = DAL.TipoDocumentoId; return(documento); }catch (Exception) { return(null); } }
/// <summary> /// Este metodo convierte un DTO a DAL /// </summary> /// <param name="DAL">Parametro DAL</param> /// <returns>Objeto tipo DAL</returns> public static ObligacionDTO MapeoDALToDTO(Obligacion DAL) { try { ObligacionDTO obligacion = new ObligacionDTO(); obligacion.ObligacionId = DAL.ObligacionId; obligacion.UpdateAt = DAL.UpdateAt; obligacion.CreatedAt = DAL.CreatedAt; obligacion.Cuantia = DAL.Cuantia; obligacion.Dueda = DAL.Dueda; obligacion.Estado = DAL.Estado; if (DAL.Expediente != null) { obligacion.Expediente = Expediente.MapeoDALToDTO(DAL.Expediente); } if (DAL.Persona != null) { obligacion.Persona = Persona.MapeoDALToDTO(DAL.Persona); } if (DAL.TipoObligacion != null) { obligacion.TipoObligacion = TipoObligacion.MapeoDALToDTO(DAL.TipoObligacion); } obligacion.FechaPreinscripcion = DAL.FechaPreinscripcion; obligacion.PersonaId = DAL.PersonaId; obligacion.ExpedienteId = DAL.ExpedienteId; obligacion.TipoObligacionId = DAL.TipoObligacionId; return(obligacion); } catch (Exception) { return(null); } }
/// <summary> /// Este metodo convierte un DTO a DAL /// </summary> /// <param name="DTO">Parametro DTO</param> /// <returns>Objeto tipo DAL</returns> public static Expediente MapeoDTOToDAL(ExpedienteDTO DTO) { Expediente expediente = new Expediente(); expediente.ExpedienteId = DTO.ExpedienteId; expediente.Cuantia = DTO.Cuantia; expediente.Identificacion = DTO.Identificacion; expediente.Nombre = DTO.Nombre; expediente.ObligacionId = DTO.ObligacionId; return(expediente); }
/// <summary> /// /// </summary> /// <param name="DAL"></param> /// <returns></returns> public static ExpedienteDTO MapeoDALToDTO(Expediente DAL) { ExpedienteDTO expediente = new ExpedienteDTO(); expediente.ExpedienteId = DAL.ExpedienteId; expediente.Cuantia = DAL.Cuantia; expediente.Identificacion = DAL.Identificacion; expediente.Nombre = DAL.Nombre; expediente.Obligacion = Obligacion.MapeoDALToDTO(DAL.Obligacion); expediente.ObligacionId = DAL.ObligacionId; return(expediente); }
/// <summary> /// Este metodo convierte un DTO a DAL /// </summary> /// <param name="DAL">Parametro DAL</param> /// <returns>Objeto tipo DAL</returns> public static ObligacionDTO MapeoDALToDTO(Obligacion DAL) { ObligacionDTO obligacion = new ObligacionDTO(); obligacion.ObligacionId = DAL.ObligacionId; obligacion.Cuantia = DAL.Cuantia; if (DAL.Expediente != null) { obligacion.Expediente = Expediente.MapeoDALToDTO(DAL.Expediente); } obligacion.ExpedienteId = DAL.ExpedienteId; return(obligacion); }
/// <summary> /// Este metodo convierte un DTO a DAL /// </summary> /// <param name="DTO">Parametro DTO</param> /// <returns>Objeto tipo DAL</returns> public static Obligacion MapeoDTOToDAL(ObligacionDTO DTO) { Obligacion obligacion = new Obligacion(); obligacion.ObligacionId = DTO.ObligacionId; obligacion.Cuantia = DTO.Cuantia; if (DTO.Expediente != null) { obligacion.Expediente = Expediente.MapeoDTOToDAL(DTO.Expediente); } obligacion.ExpedienteId = DTO.ExpedienteId; return(obligacion); }