public AbonamentController(IAbonamentRepository abonament, IClientAbonamentRepository clientAbonament, IClientRepository client, IAngajatRepository angajat)
 {
     IAbonamentRepository       = abonament;
     IClientAbonamentRepository = clientAbonament;
     IClientRepository          = client;
     IAngajatRepository         = angajat;
 }
 public LoginService(IAngajatRepository repo)
 {
     this.repo = repo;
 }
 // GET: Angajat
 public AngajatController(IAngajatRepository repository)
 {
     IAngajatRepository = repository;
 }
Esempio n. 4
0
 public AngajatService(IAngajatRepository <String, String> repo)
 {
     this.repo = repo;
 }