/// <summary>
 /// Initializes a new instance of the <see cref="TemplateController"/> class.
 ///     Contrutor padrão do TemplateController.
 /// </summary>
 /// <param name="appService">Application de serviço</param>
 /// <param name="loggerFactory">Factory de gerenciamento de logs</param>
 public TemplateController(
     ITemplateAppService appService,
     ILoggerFactory loggerFactory)
     : base(appService)
 {
     this.appService = appService;
     this.logger     = loggerFactory.CreateLogger <TemplateController>();
 }
 public MensagemController(IMensagemAppService baseApps, IUsuarioAppService usuApps, IContatoAppService conApps, IGrupoAppService gruApps, ICampanhaAppService camApps, IMensagemContatoAppService mcApps, IMensagemGrupoAppService mgApps, IMensagemCampanhaAppService mpApps, ITemplateAppService temApps)
 {
     baseApp = baseApps;
     usuApp  = usuApps;
     conApp  = conApps;
     gruApp  = gruApps;
     camApp  = camApps;
     mcApp   = mcApps;
     mgApp   = mgApps;
     mpApp   = mpApps;
     temApp  = temApps;
 }
Exemple #3
0
 public ProjectData()
     : base("UniCloud.Application.ProjectBC.DTO", UniContainer.Resolve<IQueryableUnitOfWork>())
 {
     _templateAppService = UniContainer.Resolve<ITemplateAppService>();
     _relatedDocAppService = UniContainer.Resolve<IRelatedDocAppService>();
 }
Exemple #4
0
 public TempSystemController(ITemplateAppService templateAppServiceCate, ICategoryAppService CategoryAppService)
 {
     _iTemplateAppServiceCate = templateAppServiceCate;
     _iCategoryAppService     = CategoryAppService;
 }
 public TemplateController(ITemplateAppService baseApps, IUsuarioAppService usuApps)
 {
     baseApp = baseApps;
     usuApp  = usuApps;
 }
Exemple #6
0
 public TemplateController(ITemplateAppService baseApps, IUsuarioAppService usuApps, ICampanhaAppService camApps)
 {
     baseApp = baseApps;
     usuApp  = usuApps;
     camApp  = camApps;
 }
Exemple #7
0
 public TemplateController(ILogger <TemplateController> logger, ITemplateAppService templateAppService)
 {
     _logger             = logger;
     _templateAppService = templateAppService;
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="TemplateAppService"></param>
 public TemplateController(ITemplateAppService TemplateAppService)
 {
     _TemplateAppService = TemplateAppService;
 }
 /// <summary>
 ///
 /// </summary>
 /// <param name="PageAppService"></param>
 public PageController(IPageAppService PageAppService, ITemplateAppService TemplateAppService)
 {
     _PageAppService     = PageAppService;
     _TemplateAppService = TemplateAppService;
 }