예제 #1
0
 public BaseCRUDService(eBibliotekaContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #2
0
 public PisacService(eBibliotekaContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #3
0
 public BaseService(eBibliotekaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #4
0
 public DrzavaService(eBibliotekaContext context, IMapper mapper) : base(context, mapper)
 {
 }
예제 #5
0
 public NotifikacijaService(eBibliotekaContext context, IMapper mapper, IHubContext <SignalRHub> hub) : base(context, mapper)
 {
     _Hub = hub;
 }
예제 #6
0
 public KorisnikService(IOptions <AppSettings> appSettings, eBibliotekaContext eBibliotekaContext, IMapper mapper)
 {
     _context     = eBibliotekaContext;
     _appSettings = appSettings.Value;
     _mapper      = mapper;
 }
예제 #7
0
 public SignalRHub(eBibliotekaContext db)
 {
     _db = db;
 }