]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - carpeta/disenio_grafico/src/Dominio/Prestacion.cs
17b4dee76b3d6e2a39dd13c9e9fb3229f43dd6be
[z.facultad/75.10/miklolife.git] / carpeta / disenio_grafico / src / Dominio / Prestacion.cs
1 namespace Dominio {
2 namespace Autorizaciones {
3
4 using System;
5 using System.Collections;
6
7 public class Prestacion 
8 {
9         private string _codigo;
10         private string _nombre;
11         private DateTime _fechaBaja;
12         private ArrayList _prestadores;
13         private Categoria _categoria;
14
15         public bool AgregarPrestador (Prestador p)
16         {
17                 _prestadores.Add (p);
18                 return true;
19         }
20         
21 }
22
23 }
24 }