Example #1
0
 public AdvertisementRepository(DaraAdsDbContext context, ISortHelper <Domain.Advertisement> sortHelper) : base(context)
 {
     _sortHelper = sortHelper;
 }
Example #2
0
 public Repository(DaraAdsDbContext context)
 {
     _context = context;
 }
Example #3
0
 public ChatRepository(DaraAdsDbContext context) : base(context)
 {
 }
Example #4
0
 public MessageRepository(DaraAdsDbContext _context) : base(_context)
 {
 }
Example #5
0
 public FavoriteRepository(DaraAdsDbContext _context, ISortHelper<Favorite> sortHelper) : base(_context)
 {
     _sortHelper = sortHelper;
 }
Example #6
0
 public CategoryRepository(DaraAdsDbContext context) : base(context)
 {
 }