+
+ public Cobertura BuscarCobertura (Prestador p, Prestacion pe)
+ {
+ if ((p == null) || (pe == null)) {
+ Console.WriteLine ("Prestador o Prestacion es null!!");
+ return null;
+ }
+ if (pe.ExistePrestador (p) == false) {
+ Console.WriteLine ("La prestacion no esta dada por este prestador.");
+ return null;
+ }
+
+ if (_coberturas == null) return null;
+
+ Cobertura ret = null;
+ foreach (Cobertura c in _coberturas) {
+ if (pe.Codigo.Equals(c.Prestacion.Codigo) == true) {
+ ret = c;
+ break;
+ }
+ }
+ return ret;
+ }