public FormPhilHealth()
 {
     InitializeComponent();
     philHealth = new PhilHealth();
     counts     = new Counts();
     admin      = new Admin();
 }
        public IActionResult Details(long Id)
        {
            Person     PhilHealthMember = _person.Get(Id);
            PhilHealth PhilHealthDetail = _philHealth.Get(Id);


            return(View());
        }
Example #3
0
 void IPhilHealth.Update(PhilHealth updatedPhilHealth)
 {
     throw new NotImplementedException();
 }
Example #4
0
 void IPhilHealth.Add(PhilHealth newPhilHealth)
 {
     throw new NotImplementedException();
 }