コード例 #1
0
 public ProductBll(ILogger logger, ICategoryBll categoryBll, IProductDao productDao, ICommodityUnitDao commodityUnitDao)
 {
     _logger           = logger;
     _categoryBll      = categoryBll;
     _productDao       = productDao;
     _commodityUnitDao = commodityUnitDao;
 }
コード例 #2
0
ファイル: QuotesBll.cs プロジェクト: Dzone1658/MVC-Test
 public QuotesBll(IConfiguration configuration, ISessionHelper sessionHelper, ITagsBll tagsBll, ICategoryBll categoryBll)
 {
     _configuration = configuration;
     _sessionHelper = sessionHelper;
     _categoryBll   = categoryBll;
     _tagsBll       = tagsBll;
 }
コード例 #3
0
 public QuotesController(IHostingEnvironment hostingEnvironment, IQuotesBll quotesBll, ICategoryBll categoryBll, ITagsBll tagsBll)
 {
     _hostingEnvironment = hostingEnvironment;
     _quotesBll          = quotesBll;
     _categoryBll        = categoryBll;
     _tagsBll            = tagsBll;
 }
コード例 #4
0
 public HomeController(IPostBll postBll, ICommentBll commentBll, ICategoryBll categoryBll, ISearchDetailsBll searchDetailsBll, INoticeBll noticeBll, IPostAccessRecordBll postAccessRecordBll)
 {
     CategoryBll         = categoryBll;
     PostBll             = postBll;
     CommentBll          = commentBll;
     SearchDetailsBll    = searchDetailsBll;
     NoticeBll           = noticeBll;
     PostAccessRecordBll = postAccessRecordBll;
 }
コード例 #5
0
ファイル: PostController.cs プロジェクト: plu2/Masuit.MyBlogs
 public PostController(IPostBll postBll, ICategoryBll categoryBll, IBroadcastBll broadcastBll, ISeminarBll seminarBll, IPostAccessRecordBll postAccessRecordBll, ICommentBll commentBll, IPostHistoryVersionBll postHistoryVersionBll)
 {
     PostBll               = postBll;
     CategoryBll           = categoryBll;
     BroadcastBll          = broadcastBll;
     SeminarBll            = seminarBll;
     PostAccessRecordBll   = postAccessRecordBll;
     CommentBll            = commentBll;
     PostHistoryVersionBll = postHistoryVersionBll;
 }
コード例 #6
0
 public CommodityUnitBll(ILogger logger, ICategoryBll categoryBll, IProductBll productBll, IStatusBll statusBll, IStoreBll storeBll, IVendorBll vendorBll, ICommodityUnitDao commodityUnitDao)
 {
     _logger           = logger;
     _categoryBll      = categoryBll;
     _productBll       = productBll;
     _statusBll        = statusBll;
     _storeBll         = storeBll;
     _vendorBll        = vendorBll;
     _commodityUnitDao = commodityUnitDao;
 }
コード例 #7
0
 public CategoryController(ICategoryBll categoryBll, IPostBll postBll)
 {
     CategoryBll = categoryBll;
     _postBll    = postBll;
 }
コード例 #8
0
 public ContentController(IContentBll contentBll, ICategoryBll categoryBll, IModelBll modelBll)
 {
     _contentBll  = contentBll;
     _categoryBll = categoryBll;
     _modelBll    = modelBll;
 }
コード例 #9
0
 public GetCategoriesService(ICategoryBll category)
 {
     _category = category;
 }
コード例 #10
0
 public CategoryController(ICategoryBll categoryBll)
 {
     CategoryBll = categoryBll;
 }
コード例 #11
0
 // readonly private ILogger _logger;
 public AddCategoryService(ICategoryBll categoryBll)
 {
     _categoryBll = categoryBll;
 }
コード例 #12
0
 public CategoryController(IModelBll modelBll, IModelFieldBll modelFieldBll, ICategoryBll categoryBll)
 {
     _modelBll      = modelBll;
     _modelFieldBll = modelFieldBll;
     _categoryBll   = categoryBll;
 }