public ZborService(IZborRepository repo)
 {
     this.repo = repo;
 }
Esempio n. 2
0
 public BiletService(IBiletRepository repoB, IClientRepository repoC, IZborRepository repoZ)
 {
     this.repoB = repoB;
     this.repoC = repoC;
     this.repoZ = repoZ;
 }