public DoktorController(UserBaseInterface <Doktor, DoktorVM, CreateDoktorVM> userInterface)
 {
     _userInterface = userInterface;
 }
 public TehnicarController(UserBaseInterface <Tehnicar, TehnicarVM, CreateTehnicarVM> userInterface)
 {
     _userInterface = userInterface;
 }
示例#3
0
 public KorisnikController(UserBaseInterface <Korisnik, KorisnikVM, SignUpKorisnikVM> userInterface, DBContext db)
 {
     _userInterface = userInterface;
     _db            = db;
 }
示例#4
0
 public AdminController(UserBaseInterface <Admin, Admin, SignupAdminVM> userInterface, DBContext db)
 {
     _userInterface = userInterface;
     _db            = db;
 }