public PatientsController(Repositories.IPatientRepository patientRepository)
 {
     repository = patientRepository;
     svcPatient = new PatientService(AppService.Current.DataContextV2);
 }
 public PatientsController()
 {
     repository = new Repositories.PatientRepository();
     svcPatient = new PatientService(AppService.Current.DataContextV2);
 }