Example #1
0
 public PasController(IAngazovanjeService serviceAngazovanje, IPasService service, IObukaService serviceObuka, ObukaPasaContext obukaPasaContext)
 {
     this.service            = service;
     this.serviceObuka       = serviceObuka;
     this.obukaPasaContext   = obukaPasaContext;
     this.serviceAngazovanje = serviceAngazovanje;
 }
Example #2
0
 public InstruktorController(SignInManager <ApplicationUser> signInManager, IObukaService service, ObukaPasaContext context, UserManager <ApplicationUser> userManager)
 {
     this.service       = service;
     this.context       = context;
     this.userManager   = userManager;
     this.signInManager = signInManager;
 }
Example #3
0
 public AdministrationController(IInstruktorService service, ObukaPasaContext context, IObukaService serviceObuka, RoleManager <IdentityRole> roleManager, UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, ILogger <AdministrationController> logger, IConfiguration configuration)
 {
     this.roleManager   = roleManager;
     this.service       = service;
     this.serviceObuka  = serviceObuka;
     this.context       = context;
     this.userManager   = userManager;
     this.signInManager = signInManager;
     this.logger        = logger;
     this.configuration = configuration;
 }
 public ObukaController(IObukaService service)
 {
     this.service = service;
 }
 public ObukaController(IObukaService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }