Beispiel #1
0
 public TagTemplateController(
     ITagTemplateService tagTemplateService,
     ICompanyService companyService,
     ITagTemplateDetService tagTemplateDetService,
     ITagService tagService,
     IInvAddressService invAddressService,
     IInverterService inverterService
     )
 {
     this.tagTemplateService    = tagTemplateService;
     this.companyService        = companyService;
     this.tagTemplateDetService = tagTemplateDetService;
     this.tagService            = tagService;
     this.invAddressService     = invAddressService;
     this.inverterService       = inverterService;
 }
 public InverterController(IInverterService inverterService, IInvAddressService invAddressService, ITagService tagService)
 {
     this.inverterService   = inverterService;
     this.invAddressService = invAddressService;
     this.tagService        = tagService;
 }