public RepositoryBase(beeaterContext context)
 {
     Context = context;
 }
 public UserRepository(beeaterContext context)
     : base(context)
 {
 }
Exemple #3
0
 public EmployeeController(beeaterContext context)
     : base(context)
 {
 }
 public PreferencesController(beeaterContext context)
     : base(context)
 {
 }
 public ShowRepository(beeaterContext context)
     : base(context)
 {
 }
Exemple #6
0
 public MovieRepository(beeaterContext context)
     : base(context)
 {
 }
Exemple #7
0
 public GenreRepository(beeaterContext context)
     : base(context)
 {
 }
 public RepositoryWrapper(beeaterContext context)
 {
     _context = context;
 }
 public AuthorizationController(beeaterContext context)
     : base(context)
 {
 }
Exemple #10
0
 public CommonController(beeaterContext context)
 {
     _context = context;
 }
 public RatingRepository(beeaterContext context)
     : base(context)
 {
 }