Ejemplo n.º 1
0
 public SUnitsController(E2EDbContext context)
 {
     TableControllerOptions = new TableControllerOptions <SUnit> {
         SoftDeleteEnabled = true
     };
     TableRepository = new EntityTableRepository <SUnit>(context);
 }
Ejemplo n.º 2
0
 public RMoviesController(E2EDbContext context)
 {
     TableControllerOptions = new TableControllerOptions <RMovie>
     {
         SoftDeleteEnabled = true
     };
     TableRepository = new EntityTableRepository <RMovie>(context);
 }
Ejemplo n.º 3
0
 public UnauthorizedController(E2EDbContext context)
 {
     TableRepository = new EntityTableRepository <Movie>(context);
 }
 public BlogCommentsController(E2EDbContext context)
 {
     TableRepository = new EntityTableRepository <BlogComment>(context);
 }
Ejemplo n.º 5
0
 public UnitsController(E2EDbContext context)
 {
     TableRepository = new EntityTableRepository <Unit>(context);
 }
Ejemplo n.º 6
0
 public MoviesController(E2EDbContext context)
 {
     TableRepository = new EntityTableRepository <Movie>(context);
 }