Exemple #1
0
 public TemplateAppService(IMapper mapper, ITemplateService templateService, IJsonAttributeService jsonAttributeService, IJsonNodeService jsonNodeService)
 {
     _mapper               = mapper;
     _templateService      = templateService;
     _jsonAttributeService = jsonAttributeService;
     _jsonNodeService      = jsonNodeService;
 }
Exemple #2
0
 public JsonNodeAppService(IMapper mapper, IJsonNodeService jsonNodeService, IJsonAttributeService jsonAttributeService)
 {
     _mapper               = mapper;
     _jsonNodeService      = jsonNodeService;
     _jsonAttributeService = jsonAttributeService;
 }