Exemple #1
0
 public ListingImageService(ZamjenaDomovaContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public BaseService(ZamjenaDomovaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public WishlistService(ZamjenaDomovaContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #4
0
 public AmenityService(ZamjenaDomovaContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemple #5
0
 public BaseCRUDService(ZamjenaDomovaContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemple #6
0
 public RatingService(ZamjenaDomovaContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemple #7
0
 public UserService(ZamjenaDomovaContext context, IMapper mapper, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
 }