예제 #1
0
 public NarudzbaController(IArtikliService artikliService, INarudzbaService narudzbaService, UserManager <ApplicationUser> userManager, IKupacService kupacService, IProizvodjaciService proizvodjaciService, IConfiguration Configuration)
 {
     this.ArtikliService      = artikliService;
     this.NarudzbaService     = narudzbaService;
     this.UserManager         = userManager;
     this.KupacService        = kupacService;
     this.proizvodjaciService = proizvodjaciService;
     this.Configuration       = Configuration;
 }
예제 #2
0
 public NarudzbaController(IMobitelService mobitelService, INarudzbaService narudzbaService, UserManager <ApplicationUser> _userManager, IKupacService kupacService, ISmsService smsService, IConfiguration config)
 {
     this.mobitelService  = mobitelService;
     this.narudzbaService = narudzbaService;
     this.kupacService    = kupacService;
     this._userManager    = _userManager;
     this.smsService      = smsService;
     this.Configuration   = config;
 }
 public NarudzbeStanjaController(INarudzbaService service)
 {
     _service = service;
 }
 public PreporukaController(IProizvodiService proizvodiService, INarudzbaService narudzbeService, INarudzbaDetailsService narudzbeDetailsService)
 {
     _proizvodiService       = proizvodiService;
     _narudzbeDetailsService = narudzbeDetailsService;
     _narudzbeService        = narudzbeService;
 }
 public NarudzbaController(INarudzbaService narudzbaService)
 {
     _narudzbaService = narudzbaService;
 }
 public NarudzbaController(INarudzbaService service) : base(service)
 {
     _service = service;
 }