public CitizenUserRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #2
0
 public TransactionRepository(SmartCityDbContext context) : base(context)
 {
 }
 public ViolationRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #4
0
 public AsyncBaseRepository(SmartCityDbContext context)
 {
     Context = context;
     DbSet   = context.Set <TModel>();
 }
Exemple #5
0
 public RoleRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #6
0
 public ProductRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #7
0
 public HealthDepartmentRepository(SmartCityDbContext context) : base(context)
 {
 }
 public PolicemanRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #9
0
 public ReceptionOfPatientsRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #10
0
 public StudentController(SmartCityDbContext webMazeContext)
 {
     _webMazeContext = webMazeContext;
 }
Exemple #11
0
 public MedicalInsuranceRepository(SmartCityDbContext context) : base(context)
 {
 }
 public FriendshipRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #13
0
 public AdressRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #14
0
 public MessageRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #15
0
 public RecordFormRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #16
0
 public CertificateRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #17
0
 public BusWorkerRepository(SmartCityDbContext context) : base(context)
 {
 }
 public UserTaskRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #19
0
 public BusStopRepository(SmartCityDbContext context) : base(context)
 {
 }
Exemple #20
0
 public BaseRepository(SmartCityDbContext context)
 {
     this.context = context;
     dbSet        = context.Set <Model>();
 }