Пример #1
0
 public OrganizationRoleRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #2
0
 public Repository(WatcherDbContext context, IMapper automapper)
 {
     Context = context;
     DbSet   = Context.Set <TEntity>();
     mapper  = automapper;
 }
Пример #3
0
 public DashboardsRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #4
0
 public InstanceRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #5
0
 public NotificationRepository(WatcherDbContext context, IMapper automapper) : base(context, automapper)
 {
 }
Пример #6
0
 public FeedbackRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #7
0
 public ChatsRepository(WatcherDbContext context, IMapper automapper) : base(context, automapper)
 {
 }
Пример #8
0
 public ThemeRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #9
0
 public NotificationSettingsRepository(WatcherDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Пример #10
0
 public UnitOfWork(WatcherDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CollectorAppVersionRepository(WatcherDbContext context, IMapper mapper)
     : base(context, mapper)
 {
 }
Пример #12
0
 public ChartsRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #13
0
 public ResponseRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #14
0
 public UserOrganizationRepository(WatcherDbContext context, IMapper automapper)
 {
     Context = context;
     DbSet   = Context.Set <UserOrganization>();
     mapper  = automapper;
 }
Пример #15
0
 public SamplesRepository(WatcherDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Пример #16
0
 public UserChatRepository(WatcherDbContext context)
 {
     _context = context;
     _dbSet   = _context.Set <UserChat>();
 }