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