コード例 #1
0
 public TextWidgetEngine(
     DatabaseContext context,
     ITextWidgetStore textWidgetStore
     )
 {
     _context         = context;
     _textWidgetStore = textWidgetStore;
 }
コード例 #2
0
        public TextWidgetController(
            UserManager <User> userManager,
            ITextWidgetEngine textWidgetEngine,
            ITextWidgetStore textWidgetStore,
            DatabaseContext context)

        {
            _userManager      = userManager;
            _textWidgetEngine = textWidgetEngine;
            _textWidgetStore  = textWidgetStore;
            _context          = context;
        }
コード例 #3
0
 public WidgetEngine(
     DatabaseContext context,
     IWidgetStore widgetStore,
     ITextWidgetStore textWidgetStore,
     IStoryBoardStore storyBoardStore,
     IImageWidgetStore imageWidgetStore
     )
 {
     _context          = context;
     _textWidgetStore  = textWidgetStore;
     _storyBoardStore  = storyBoardStore;
     _imageWidgetStore = imageWidgetStore;
     _widgetStore      = widgetStore;
 }