コード例 #1
0
 public PostUow(IPostContext context, IRepositoryProvider repositoryProvider) : base(context, repositoryProvider)
 {
 }
コード例 #2
0
 public Postrepository(IPostContext context)
 {
     this.context = context;
 }
コード例 #3
0
 public PostRepository(IPostContext context)
 {
     _context = context;
 }
コード例 #4
0
 public PostAPIController(IPostContext postContext)
 {
     this.postContext = postContext;
 }
コード例 #5
0
 public HomeController(IPostContext postContext)
 {
     postRepository = postContext;
 }
コード例 #6
0
 public PostLogic(IPostContext context)
 {
     _context       = context;
     _reportContext = new ReportOracleContext();
 }
コード例 #7
0
 public PostsController(IPostContext postContext, IGebruikerContext gebruikerContext)
 {
     this.postContext      = postContext;
     this.gebruikerContext = gebruikerContext;
 }
コード例 #8
0
 public PostRepository(IPostContext IUserContext)
 {
     _IPostContext = IUserContext;
 }
コード例 #9
0
 public PostLogic()
 {
     _context       = new PostOracleContext();
     _reportContext = new ReportOracleContext();
 }
コード例 #10
0
 public PostContainer(IPostContext context)
 {
     this.context = context;
 }
コード例 #11
0
 public PostLogic(IPostContext context)
 {
     PostRepository = new PostRepository(context);
 }
コード例 #12
0
 public PostLogic(IPostContext context)
 {
     _context = context;
     _reportContext = new ReportOracleContext();
 }
コード例 #13
0
 public PostLogic()
 {
     _context = new PostOracleContext();
     _reportContext = new ReportOracleContext();
 }
コード例 #14
0
ファイル: PostLogic.cs プロジェクト: jackdonders/ICT4Events
 public PostLogic(IPostContext context)
 {
     _context = context;
 }
コード例 #15
0
 public PostLogic()
 {
     _context = new PostSQLContext();
 }
コード例 #16
0
 public HomeController(IPostContext postContext)
 {
     _IPostContext = postContext;
     postLogic     = new PostLogic(_IPostContext);
 }