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