Exemplo n.º 1
0
 public AdminController(IProduct product, IUser user, IDogovor dogovor, ISklad sklad)
 {
     this.sklad   = sklad;
     this.user    = user;
     this.dogovor = dogovor;
     this.product = product;
 }
Exemplo n.º 2
0
 public SotrudnikController(IDogovor dogovor, IProduct product, ISklad sklad)
 {
     this.dogovor = dogovor;
     this.sklad   = sklad;
     this.product = product;
 }