Beispiel #1
0
 public BasicAuthenticationHandler(
     IOptionsMonitor <AuthenticationSchemeOptions> options,
     ILoggerFactory logger,
     UrlEncoder encoder,
     ISystemClock clock,
     IOsobaService userService)
     : base(options, logger, encoder, clock)
 {
     _userService = userService;
 }
Beispiel #2
0
 public OsobaController(IOsobaService osobaService)
 {
     _osobaService = osobaService;
 }
 public PierwszyController(IOsobaService osobaService)
 {
     this.osobaService = osobaService;
 }
 public AutentifikacijaController(_160001Context context, IMapper mapper, IOsobaService service)
 {
     this._mapper  = mapper;
     this._context = context;
     this._service = service;
 }
Beispiel #5
0
 public OsobaController()
 {
     this._service = new OsobaService();
     this._mapper  = new OsobaMapper();
 }
 public OsobaController(IOsobaService service)
 {
     this._service = service;
 }
Beispiel #7
0
 public OsobaModelDto(IOsobaService osobe)
 {
     Osobe = osobe.DajSveEntitete().ToList();
 }