public PostUow(IPostContext context, IRepositoryProvider repositoryProvider) : base(context, repositoryProvider)
 {
 }
Ejemplo n.º 2
0
 public Postrepository(IPostContext context)
 {
     this.context = context;
 }
Ejemplo n.º 3
0
 public PostRepository(IPostContext context)
 {
     _context = context;
 }
Ejemplo n.º 4
0
 public PostAPIController(IPostContext postContext)
 {
     this.postContext = postContext;
 }
Ejemplo n.º 5
0
 public HomeController(IPostContext postContext)
 {
     postRepository = postContext;
 }
Ejemplo n.º 6
0
 public PostLogic(IPostContext context)
 {
     _context       = context;
     _reportContext = new ReportOracleContext();
 }
Ejemplo n.º 7
0
 public PostsController(IPostContext postContext, IGebruikerContext gebruikerContext)
 {
     this.postContext      = postContext;
     this.gebruikerContext = gebruikerContext;
 }
Ejemplo n.º 8
0
 public PostRepository(IPostContext IUserContext)
 {
     _IPostContext = IUserContext;
 }
Ejemplo n.º 9
0
 public PostLogic()
 {
     _context       = new PostOracleContext();
     _reportContext = new ReportOracleContext();
 }
Ejemplo n.º 10
0
 public PostContainer(IPostContext context)
 {
     this.context = context;
 }
Ejemplo n.º 11
0
 public PostLogic(IPostContext context)
 {
     PostRepository = new PostRepository(context);
 }
Ejemplo n.º 12
0
 public PostLogic(IPostContext context)
 {
     _context = context;
     _reportContext = new ReportOracleContext();
 }
Ejemplo n.º 13
0
 public PostLogic()
 {
     _context = new PostOracleContext();
     _reportContext = new ReportOracleContext();
 }
Ejemplo n.º 14
0
 public PostLogic(IPostContext context)
 {
     _context = context;
 }
Ejemplo n.º 15
0
 public PostLogic()
 {
     _context = new PostSQLContext();
 }
Ejemplo n.º 16
0
 public HomeController(IPostContext postContext)
 {
     _IPostContext = postContext;
     postLogic     = new PostLogic(_IPostContext);
 }