Example #1
0
 public DataModel.docentes_cursos CreateEntity(Docente_CursoBE be)
 {
     DataModel.docentes_cursos entity;
     if (be != null)
     {
         entity = new DataModel.docentes_cursos()
         {
             id_curso   = be.id_curso,
             id_dictado = be.id_dictado,
             id_docente = be.id_docente,
             cargo      = be.cargo,
             estado     = be.estado
         };
         return(entity);
     }
     return(entity = new DataModel.docentes_cursos());
 }
Example #2
0
        public Docente_CursoBE CreateBusiness(DataModel.docentes_cursos entity)
        {
            Docente_CursoBE be;

            if (entity != null)
            {
                be = new Docente_CursoBE()
                {
                    id_curso   = entity.id_curso,
                    id_dictado = entity.id_dictado,
                    id_docente = entity.id_docente,
                    cargo      = entity.cargo,
                    estado     = entity.estado
                };
                return(be);
            }
            return(be = new Docente_CursoBE());
        }