/// <summary>
 /// Initialises a new instance of the <see cref="TaxonomyEditManager"/> class.
 /// </summary>
 /// <param name="taxonomyMapper">
 /// The taxonomy mapper.
 /// </param>
 /// <param name="taxonomyWrapper">
 /// The taxonomy wrapper.
 /// </param>
 /// <param name="templateWrapper">
 /// The template Wrapper.
 /// </param>
 /// <param name="specialismWrapper">
 /// The specialism Wrapper.
 /// </param>
 /// <param name="taxonomySpecialismWrapper">
 /// The taxonomy Specialism Wrapper.
 /// </param>
 public TaxonomyEditManager(
     IMapper <Taxonomy, TaxonomyEditViewModel> taxonomyMapper,
     ITaxonomyWrapper taxonomyWrapper,
     ITemplateWrapper templateWrapper,
     ISpecialismWrapper specialismWrapper)
 {
     this.taxonomyMapper    = taxonomyMapper;
     this.taxonomyWrapper   = taxonomyWrapper;
     this.templateWrapper   = templateWrapper;
     this.specialismWrapper = specialismWrapper;
 }
Esempio n. 2
0
 /// <summary>
 /// Initialises a new instance of the <see cref="TemplateManager"/> class.
 /// </summary>
 /// <param name="templateMapper">
 /// The template mapper.
 /// </param>
 /// <param name="templateWrapper">
 /// The template wrapper.
 /// </param>
 public TemplateManager(IMapper <Template, TemplateViewModel> templateMapper, ITemplateWrapper templateWrapper)
 {
     this.templateMapper  = templateMapper;
     this.templateWrapper = templateWrapper;
 }