internal Archive( IContentRepository contentRep, IArchiveRepository archiveRep, ILinkRepository linkRep, IExtendFieldRepository extendRep, ICategoryRepository categoryRep, ITemplateRepository templateRep, int id, string strId, int categoryId, string title) : base( contentRep, extendRep, categoryRep, templateRep, linkRep, id, categoryId, title ) { this.StrId = strId; this._archiveRep = archiveRep; this._templateRep = templateRep; }
internal Category(ICategoryRepository rep,IExtendFieldRepository extendRep,ITemplateRepository tmpRep, int id,ISite site) { this.Site = site; this._rep = rep; this.Id = id; this._extendRep = extendRep; this._tempRep = tmpRep; }
internal Category(ICategoryRepository rep, IExtendFieldRepository extendRep, ITemplateRepository tmpRep, int id, ISite site) { this.Site = site; this._rep = rep; this.Id = id; this._extendRep = extendRep; this._tempRep = tmpRep; }
/// <summary> /// /// </summary> /// <param name="categoryRep"></param> /// <param name="extendRep"></param> /// <param name="tempRep"></param> /// <param name="categoryId"></param> /// <param name="site"></param> /// <returns></returns> public ICategory CreateCategory( ICategoryRepository categoryRep, IExtendFieldRepository extendRep, ITemplateRepository tempRep, int categoryId, ISite site) { return new Category(categoryRep, extendRep, tempRep,categoryId, site); }
/// <summary> /// /// </summary> /// <param name="categoryRep"></param> /// <param name="extendRep"></param> /// <param name="tempRep"></param> /// <param name="categoryId"></param> /// <param name="site"></param> /// <returns></returns> public ICategory CreateCategory( ICategoryRepo categoryRep, ISiteRepo siteRepo, IExtendFieldRepository extendRep, ITemplateRepo tempRep, CmsCategoryEntity value) { return(new Category(categoryRep, siteRepo, extendRep, tempRep, value)); }
/// <summary> /// /// </summary> /// <param name="categoryRep"></param> /// <param name="extendRep"></param> /// <param name="tempRep"></param> /// <param name="categoryId"></param> /// <param name="site"></param> /// <returns></returns> public ICategory CreateCategory( ICategoryRepository categoryRep, IExtendFieldRepository extendRep, ITemplateRepository tempRep, int categoryId, ISite site) { return(new Category(categoryRep, extendRep, tempRep, categoryId, site)); }
public ArchiveService( IContentRepository contentRep, ISiteRepository siteRep, IExtendFieldRepository extendRep ) { this._contentRep = contentRep; this._siteRep = siteRep; this._extendRep = extendRep; }
public SiteRepository( IExtendFieldRepository extendFieldRepository, ICategoryRepository categoryRepository, ITemplateRepository tempRep ) { this._extendFieldRepository = extendFieldRepository; this._categoryRep = categoryRepository; this._tempRep = tempRep; }
public ArchiveService( IContentRepository contentRep, ICategoryRepo catRepo, IExtendFieldRepository extendRep ) { _contentRep = contentRep; _extendRep = extendRep; _catRepo = catRepo; }
internal Category(ICategoryRepo rep, ISiteRepo siteRepo, IExtendFieldRepository extendRep, ITemplateRepo tmpRep, CmsCategoryEntity value) { this.value = value; this._repo = rep; this._extendRep = extendRep; this._tempRep = tmpRep; this.siteRepo = siteRepo; }
public SiteService(ISiteRepository resp, ICategoryRepository categoryRep, IExtendFieldRepository extendFieldPository, ITemplateRepository tempRep) { this._resp = resp; this._extendResp = extendFieldPository; this._categoryRep = categoryRep; this._tempRep = tempRep; }
/// <summary> /// /// </summary> /// <param name="contentRep"></param> /// <param name="archiveRep"></param> /// <param name="extendRep"></param> /// <param name="categoryRep"></param> /// <param name="templateRep"></param> /// <param name="linkRep"></param> /// <param name="id"></param> /// <param name="strId"></param> /// <param name="categoryId"></param> /// <param name="title"></param> /// <returns></returns> public IArchive CreateArchive( IContentRepository contentRep, IArchiveRepository archiveRep, IExtendFieldRepository extendRep, ICategoryRepo categoryRep, ITemplateRepo templateRep, CmsArchiveEntity value) { return(new Archive(contentRep, archiveRep, extendRep, categoryRep, templateRep, value)); }
public BaseContent( IContentRepository contentRep, IExtendFieldRepository extendRep, ICategoryRepo categoryRep, ITemplateRepo templateRep) { this._contentRep = contentRep; this._extendRep = extendRep; this._categoryRep = categoryRep; this._templateRep = templateRep; }
public ArchiveService( IContentRepository contentRep, ISiteRepo siteRep, ICategoryRepo catRepo, IExtendFieldRepository extendRep ) { this._contentRep = contentRep; this._siteRep = siteRep; this._extendRep = extendRep; this._catRepo = catRepo; }
public ArchiveRepository( IContentRepository contentRep, IExtendFieldRepository extendRep, ITemplateRepository templateRep, ICategoryRepository categoryRep ) { this._contentRep = contentRep; this._extendRep = extendRep; this._templateRep = templateRep; this._categoryRep = categoryRep; }
public SiteRepository( IExtendFieldRepository extendFieldRepository, ICategoryRepo categoryRepository, ITemplateRepo tempRep, IUserRepository userRep ) { this._extendFieldRepository = extendFieldRepository; this._categoryRep = categoryRepository; this._tempRep = tempRep; this._userRep = userRep; }
public ArchiveRepository( IContentRepository contentRep, IExtendFieldRepository extendRep, ITemplateRepo templateRep, ICategoryRepo categoryRep ) { _contentRep = contentRep; _extendRep = extendRep; _templateRep = templateRep; _categoryRep = categoryRep; }
public CategoryRepository( //ISiteRepository siteRep, ITemplateRepo tempRep, IExtendFieldRepository extendRep) { // //NOTE:会循环依赖 // this._extendRep = extendRep; this._tempRep = tempRep; //this._siteRep = ObjectFactory.GetInstance<ISiteRepository>(); // GetCategoryDictionary(); }
public ArchiveRepository( IContentRepository contentRep, IExtendFieldRepository extendRep, ITemplateRepository templateRep, ICategoryRepository categoryRep, ILinkRepository linkRep ) { this._contentRep = contentRep; this._extendRep = extendRep; this._templateRep = templateRep; this._categoryRep = categoryRep; this._linkRep = linkRep; }
public CategoryRepository( //ISiteRepository siteRep, ITemplateRepository tempRep, IExtendFieldRepository extendRep) { // //NOTE:会循环依赖 // this._extendRep = extendRep; this._tempRep = tempRep; //this._siteRep = ObjectFactory.GetInstance<ISiteRepository>(); // GetCategoryDictionary(); }
/// <summary> /// /// </summary> /// <param name="contentRep"></param> /// <param name="archiveRep"></param> /// <param name="extendRep"></param> /// <param name="categoryRep"></param> /// <param name="templateRep"></param> /// <param name="linkRep"></param> /// <param name="id"></param> /// <param name="strId"></param> /// <param name="categoryId"></param> /// <param name="title"></param> /// <returns></returns> public IArchive CreateArchive( IContentRepository contentRep, IArchiveRepository archiveRep, IExtendFieldRepository extendRep, ICategoryRepository categoryRep, ITemplateRepository templateRep, ILinkRepository linkRep, int id, string strId, int categoryId, string title) { return new Archive(contentRep, archiveRep, linkRep, extendRep, categoryRep, templateRep, id, strId, categoryId, title); }
internal Site(ISiteRepository siteRepository, IExtendFieldRepository extendRepository, ICategoryRepository categoryRep, ITemplateRepository tempRep, int siteId, string name) { this.Id = siteId; this.Name = name; this._siteRepository = siteRepository; this._categoryRep = categoryRep; this._extendRepository = extendRepository; this._tempRep = tempRep; }
/// <summary> /// /// </summary> /// <param name="contentRep"></param> /// <param name="archiveRep"></param> /// <param name="extendRep"></param> /// <param name="categoryRep"></param> /// <param name="templateRep"></param> /// <param name="linkRep"></param> /// <param name="id"></param> /// <param name="strId"></param> /// <param name="categoryId"></param> /// <param name="title"></param> /// <returns></returns> public IArchive CreateArchive( IContentRepository contentRep, IArchiveRepository archiveRep, IExtendFieldRepository extendRep, ICategoryRepository categoryRep, ITemplateRepository templateRep, ILinkRepository linkRep, int id, string strId, int categoryId, string title) { return(new Archive(contentRep, archiveRep, linkRep, extendRep, categoryRep, templateRep, id, strId, categoryId, title)); }
public SiteService(ISiteRepo resp, ICategoryRepo categoryRep, IArchiveRepository archiveRep, IExtendFieldRepository extendFieldPository, IContentRepository contentRep, ITemplateRepo tempRep) { this.repo = resp; this._extendRep = extendFieldPository; this._categoryRep = categoryRep; this._archiveRep = archiveRep; this._contentRep = contentRep; this._tempRep = tempRep; }
internal Site(ISiteRepo siteRepository, IExtendFieldRepository extendRepository, ICategoryRepo categoryRep, ITemplateRepo tempRep, IUserRepository userRep, CmsSiteEntity site) { this.value = site; this._siteRepository = siteRepository; this._categoryRep = categoryRep; this._extendRepository = extendRepository; this._tempRep = tempRep; this._userRep = userRep; }
/// <summary> /// /// </summary> /// <param name="resp"></param> /// <param name="extendRepository"></param> /// <param name="categoryRep"></param> /// <param name="tempRep"></param> /// <param name="siteid"></param> /// <param name="name"></param> /// <returns></returns> public ISite CreateSite( ISiteRepository resp, IExtendFieldRepository extendRepository, ICategoryRepository categoryRep, ITemplateRepository tempRep, int siteid, string name ) { return new Site(resp, extendRepository, categoryRep, tempRep, siteid, name); }
/// <summary> /// /// </summary> /// <param name="resp"></param> /// <param name="extendRepository"></param> /// <param name="categoryRep"></param> /// <param name="tempRep"></param> /// <param name="siteId"></param> /// <param name="name"></param> /// <returns></returns> public ISite CreateSite( ISiteRepo resp, IExtendFieldRepository extendRepository, ICategoryRepo categoryRep, ITemplateRepo tempRep, IUserRepository userRep, CmsSiteEntity site ) { return(new Site(resp, extendRepository, categoryRep, tempRep, userRep, site)); }
/// <summary> /// /// </summary> /// <param name="resp"></param> /// <param name="extendRepository"></param> /// <param name="categoryRep"></param> /// <param name="tempRep"></param> /// <param name="siteid"></param> /// <param name="name"></param> /// <returns></returns> public ISite CreateSite( ISiteRepository resp, IExtendFieldRepository extendRepository, ICategoryRepository categoryRep, ITemplateRepository tempRep, int siteid, string name ) { return(new Site(resp, extendRepository, categoryRep, tempRep, siteid, name)); }
internal Archive( IContentRepository contentRep, IArchiveRepository archiveRep, IExtendFieldRepository extendRep, ICategoryRepo categoryRep, ITemplateRepo templateRep, CmsArchiveEntity value) : base( contentRep, extendRep, categoryRep, templateRep ) { this._value = value; this._archiveRep = archiveRep; this._templateRep = templateRep; this._catRepo = categoryRep; }
public BaseContent( IContentRepository contentRep, IExtendFieldRepository extendRep, ICategoryRepository categoryRep, ITemplateRepository templateRep, int id, int categoryId, string title) { this._contentRep = contentRep; this._extendRep = extendRep; this._categoryRep = categoryRep; this._templateRep = templateRep; this.Id = id; this.Title = title; this._categoryId = categoryId; this.Id = id; }
public BaseContent( IContentRepository contentRep, IExtendFieldRepository extendRep, ICategoryRepository categoryRep, ITemplateRepository templateRep, ILinkRepository linkRep, int id, int categoryId, string title) { this._contentRep = contentRep; this._linkRep = linkRep; this._extendRep = extendRep; this._categoryRep = categoryRep; this._templateRep = templateRep; this.Id = id; this._category = this._categoryRep.CreateCategory(categoryId, null); this.Title = title; this.Id = id; }
public BaseContent( IContentRepository contentRep, IExtendFieldRepository extendRep, ICategoryRepository categoryRep, ITemplateRepository templateRep, ILinkRepository linkRep, int id, int categoryId, string title) { this._contentRep = contentRep; this._linkRep = linkRep; this._extendRep = extendRep; this._categoryRep = categoryRep; this._templateRep = templateRep; this.ID = id; this._category = this._categoryRep.CreateCategory(categoryId, null); this.Title = title; this.ID = id; }
public ExtendManager(IExtendFieldRepository resp, int siteId) { this.SiteId = siteId; this._resp = resp; }
public ExtendManager(IExtendFieldRepository resp, int siteId) { this.SiteId = siteId; this._rep = resp; }