Example #1
0
 public ProizvodController(ICreateProizvodCommand createProizvod, IEditProizvodCommand editProizvod, IDeleteProizvodCommand deleteProizvodCommand, IGetProizvodsCommand getProizvods, IGetProizvodCommand getProizvod)
 {
     this._createProizvod = createProizvod;
     this._editProizvod   = editProizvod;
     this._deleteProizvod = deleteProizvodCommand;
     this._getProizvods   = getProizvods;
     this._getProizvod    = getProizvod;
 }