Example #1
0
 public AutoriService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #2
0
 public GradoviService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #3
0
 public KorisniciService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #4
0
 public OcjeneService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #5
0
 public Preporucivanje(myBooksContext database, IMapper mapper, double slicnost)
 {
     _mapper          = mapper;
     _databaseContext = database;
     _slicnost        = slicnost;
 }
Example #6
0
 public DrzaveService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #7
0
 public IzdavackeKuceService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #8
0
 public BaseCrudService(myBooksContext databaseContext, IMapper mapper) : base(databaseContext, mapper)
 {
 }
Example #9
0
 public PrijavaService(myBooksContext databaseContext, IMapper mapper)
 {
     _databaseContext = databaseContext;
     _mapper          = mapper;
 }
Example #10
0
 public PoliceKnjigeService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #11
0
 public KnjigeService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
     _preporucivanje = new Preporucivanje(database, mapper, 0.6);
 }
Example #12
0
 public RecenzijeService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }
Example #13
0
 public PrijedloziService(myBooksContext database, IMapper mapper) : base(database, mapper)
 {
 }