2 namespace Controlador {
6 using Dominio.Autorizaciones;
12 using System.Collections;
14 public class PrestadoresController : Controller
16 public ArrayList All ()
18 Prestador c = new Prestador ();
19 ObjectSet result = Db.get (c);
21 return ObjectSetToArrayList (result);
24 public ArrayList Buscar (string nombre)
26 Prestador c = new Prestador ();
28 ObjectSet result = Db.get (c);
30 return ObjectSetToArrayList (result);
33 /* TODO : Dejo los campos importantes, no tiene sentido poner los datos extra para la demo */
34 public void AgregarPrestador (string cuit, string nombre, string email)
36 Prestador p = new Prestador ();