Ejemplo n.º 1
0
 public void AgregarTipoProducto(TipoProductoDTO tipoProductoDTO)
 {
     try
     {
         db.TiposProductos.Add(tipoProductoDTO);
         db.SaveChanges();
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 2
0
 public void AgregarCategoria(CategoriasDTO categoriaDTO)
 {
     try
     {
         db.Categorias.Add(categoriaDTO);
         db.SaveChanges();
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 3
0
 public void AgregarAtributo(AtributosDTO atributoDTO)
 {
     try
     {
         db.Atributos.Add(atributoDTO);
         db.SaveChanges();
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 4
0
        public void AgregarTienda(TiendaVirtualDTO tiendaDTO)
        {
            try
            {   //var tienda = Mapper.Map<TiendaVirtual>(tiendaDTO);
                //tiendaDTO.ListaImagenes = Mapper.Map<ICollection<Imagenes>>(tiendaDTO.ListaImagenes);

                db.TiendaVirtual.Add(tiendaDTO);
                db.SaveChanges();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }