Exemplo n.º 1
0
        public bool Pagar(string id)
        {
            using (restaurantEntities bdd = new restaurantEntities())
            {
                int cod = int.Parse(id);
                bdd.P_ACTUALIZAR_ORDEN_PAGADA(cod);

                return(true);
            }
        }