Ejemplo n.º 1
0
        public void Add(Seguro entity)
        {
            var fiscal = new EntityValidation(entity);

            if (!fiscal.Valid())
            {
                throw new Exception(fiscal.GetErrorMessage());
            }
            using (Context context = new Context())
            {
                context.Seguros.Add(entity);
                context.Save();
            }
        }
Ejemplo n.º 2
0
        public void Update(Seguro entity)
        {
            var fiscal = new EntityValidation(entity);

            if (!fiscal.Valid())
            {
                throw new Exception(fiscal.GetErrorMessage());
            }
            using (Context context = new Context())
            {
                entity.ProdutoTipoId = entity.ProdutoTipo.Id;
                context.Produtos.Update(entity.Produto);
                context.Seguros.Update(entity);
                context.Save();
            }
        }