Example #1
0
 public KorpaStavkaController(IRestoranApi restoranApi, IMapper mapper, KorpaHelper korpaHelper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
     _korpaHelper = korpaHelper;
 }
 public UposlenikController(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }
Example #3
0
 public KorisnikController(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }
 public KorpaHelper(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }
 public KategorijeMenuKorisnik(IRestoranApi restoranApi)
 {
     _restoranApi = restoranApi;
 }
 public FavoritiController(IRestoranApi restoranApi)
 {
     _restoranApi = restoranApi;
 }
 public RezervacijaController(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }
 public JeloController(IRestoranApi restoranApi)
 {
     _restoranApi = restoranApi;
 }
 public NarudzbaController(IRestoranApi restoranApi, KorpaHelper korpaHelper)
 {
     _restoranApi = restoranApi;
     _korpaHelper = korpaHelper;
 }
 public HomeController(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }
Example #11
0
 public RezervacijaController(IRestoranApi restoranApi)
 {
     _restoranApi = restoranApi;
 }
 public KategorijeMenu(IRestoranApi restoranApi)
 {
     _restoranApi = restoranApi;
 }
Example #13
0
 public NarudzbaController(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }
 public SkladisteController(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }
Example #15
0
 public HomeController(IRestoranApi restoranApi)
 {
     _restoranApi = restoranApi;
 }
 public AdministratorController(IRestoranApi restoranApi, IMapper mapper)
 {
     _restoranApi = restoranApi;
     _mapper      = mapper;
 }