public MobitelController(IMobitelService mobitelService, UserManager <ApplicationUser> userManager, IKomentarService komentarService, IKupacService kupacService)
 {
     this.mobitelService  = mobitelService;
     this.komentarService = komentarService;
     this.kupacService    = kupacService;
     _userManager         = userManager;
 }
예제 #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;
 }
예제 #3
0
 public CustomerController(IMobitelService mobitelService, IProizvodjacService proizvodjacService, ILogService logService, UserManager <ApplicationUser> userManager, INovostiService novostiService, IEmailService emailService)
 {
     this.mobitelService     = mobitelService;
     this.proizvodjacService = proizvodjacService;
     this.logService         = logService;
     this.novostiService     = novostiService;
     this.emailService       = emailService;
     _userManager            = userManager;
 }
예제 #4
0
 public MobiteliController(IMobitelService service)
 {
     _service = service;
 }
 public KosaricaController(IMobitelService mobitelService)
 {
     this.mobitelService = mobitelService;
 }