コード例 #1
0
        public bool registrarCliente(cliente client)
        {
            try
            {
                las_DeliciasContext.cliente.Add(client);

                return(Convert.ToBoolean(las_DeliciasContext.SaveChanges()));
            }
            catch (DbEntityValidationException e)
            {
                foreach (var eve in e.EntityValidationErrors)
                {
                    Console.WriteLine("Entity of type \"{0}\" in state \"{1}\" has the following validation errors:",
                                      eve.Entry.Entity.GetType().Name, eve.Entry.State);
                    foreach (var ve in eve.ValidationErrors)
                    {
                        Console.WriteLine("- Property: \"{0}\", Error: \"{1}\"",
                                          ve.PropertyName, ve.ErrorMessage);
                    }
                }
                throw;
            }
        }
コード例 #2
0
        public bool registrarUsuario(usuarioCliente usuario)
        {
            las_DeliciasModel.usuarioCliente.Add(usuario);

            return(Convert.ToBoolean(las_DeliciasModel.SaveChanges()));
        }