Esempio n. 1
0
 public PatientRepository()
 {
     context=new OplContext();
     healthStatusList = new List<string>()
     {
         "Zdrowy",
         "Obserwacja",
         "Zaraża",
         "Krytyczny",
         "Pooperacyjny",
         "Wypisany"
     };
 }
Esempio n. 2
0
 public PatientRepository()
 {
     context          = new OplContext();
     healthStatusList = new List <string>()
     {
         "Zdrowy",
         "Obserwacja",
         "Zaraża",
         "Krytyczny",
         "Pooperacyjny",
         "Wypisany"
     };
 }
Esempio n. 3
0
 public BaseController()
 {
     context = new OplContext();
 }