Ejemplo n.º 1
0
        public ProductoDto Create(ProductoDto entityDto)
        {
            var entity = Mapper.Map <ProductoDto, Producto>(entityDto);

            _context.Producto.Add(entity);
            _context.SaveChanges();
            return(Mapper.Map <Producto, ProductoDto>(entity));
        }
Ejemplo n.º 2
0
 public int CrearHorario(Horarios horario)
 {
     try
     {
         entities.Horarios.Add(horario);
         return(entities.SaveChanges());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 3
0
 public int CrearCarrera(Carreras carrera)
 {
     try
     {
         entities.Carreras.Add(carrera);
         return(entities.SaveChanges());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 4
0
 public int CrearGrupo(Grupos grupo)
 {
     try
     {
         entities.Grupos.Add(grupo);
         return(entities.SaveChanges());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 5
0
 public int CrearAsistencia(Asistencias asistencia)
 {
     try
     {
         entities.Asistencias.Add(asistencia);
         return(entities.SaveChanges());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 6
0
 public int CrearMatricula(Matriculas matricula)
 {
     try
     {
         entities.Matriculas.Add(matricula);
         return(entities.SaveChanges());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 7
0
 public int CrearPeriodo(Periodos periodo)
 {
     try
     {
         entities.Periodos.Add(periodo);
         return(entities.SaveChanges());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public bool incluir(Categoria model)
 {
     try
     {
         context.Categoria.Add(model);
         context.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }
Ejemplo n.º 9
0
 public bool atualizar(Produto model)
 {
     try
     {
         Produto prod = context.Produto.Find(model.idProd);
         prod.idCat    = model.idCat;
         prod.nomeProd = model.nomeProd;
         prod.descProd = model.descProd;
         prod.imagem   = model.imagem;
         context.SaveChanges();
         return(true);
     }
     catch (Exception)
     {
         return(false);
     }
 }