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