public TagsDataController(
     ITagsDataService data,
     IErrorReportAssemblerService errAssembler
     ) : base(errAssembler)
 {
     _data = data;
 }
        public TaggableModelModelBinder(ITagsDataService tagsData)
        {
            if (tagsData == null)
            {
                throw new ArgumentNullException(nameof(tagsData));
            }

            this.tagsData = tagsData;
        }
Пример #3
0
        public TagsController(ITagsDataService tagsData, IMappingService mappingService)
        {
            if (tagsData == null)
            {
                throw new ArgumentNullException(nameof(tagsData));
            }

            if (mappingService == null)
            {
                throw new ArgumentNullException(nameof(mappingService));
            }

            this.tagsData       = tagsData;
            this.mappingService = mappingService;
        }
 public TaggableModelModelBinder(ITagsDataService tagsData)
 {
     this.tagsData = tagsData;
 }
Пример #5
0
 public TagsController(ITagsDataService tags)
 {
     this.tags = tags;
 }
Пример #6
0
 public BlogController(IPostsDataService postsData, ITagsDataService tagsData)
 {
     this.postsData = postsData;
     this.tagsData = tagsData;
 }
Пример #7
0
 public TagsController(ITagsDataService tagsData)
 {
     this.tagsData = tagsData;
 }