Example #1
0
 public UserController(IUserApplication userApplication, ICommentApplication commentApplication, IHouseApplication houseApplication, IConfiguration configuration)
 {
     _userApplication    = userApplication;
     _commentApplication = commentApplication;
     _houseApplication   = houseApplication;
     _configuration      = configuration;
 }
Example #2
0
 public ArticleModel(IArticleQuery articleQuery, IArticleCategoryQuery articleCategoryQuery,
                     ICommentApplication commentApplication)
 {
     _articleQuery         = articleQuery;
     _articleCategoryQuery = articleCategoryQuery;
     _commentApplication   = commentApplication;
 }
 public ListModel(ICommentApplication commentApplication)
 {
     _commentApplication = commentApplication;
 }
Example #4
0
 public DetailModel(ICommentApplication commentApplication)
 {
     _commentApplication = commentApplication;
 }
Example #5
0
 public IndexModel(ICommentApplication commentApplication)
 {
     _commentApplication = commentApplication;
 }
 public ProductModel(IProductQuery productQuery, ICommentApplication commentApplication)
 {
     _productQuery       = productQuery;
     _commentApplication = commentApplication;
 }
Example #7
0
 public SingleModel(IArticleQuery articleQuery, ICommentApplication commentApplication)
 {
     _articleQuery       = articleQuery;
     _commentApplication = commentApplication;
 }
 public ArticleDetailsModel(IArticleQuery articleQuery, ICommentApplication commentApplication)
 {
     _articleQuery       = articleQuery;
     _commentApplication = commentApplication;
 }
Example #9
0
 public CommentController(ICommentApplication commentApplication)
 {
     _commentApplication = commentApplication;
 }
Example #10
0
 public IndexModel(ICommentApplication commentApplication, IProductApplication productApplication)
 {
     _commentApplication = commentApplication;
     _productApplication = productApplication;
 }
Example #11
0
 public ProductDetailsModel(IProductQuery productQuery, ICommentApplication commentApplication, IProductApplication productApplication)
 {
     _productQuery       = productQuery;
     _commentApplication = commentApplication;
     _productApplication = productApplication;
 }