public ConfiguracoesController(IDomainNotificationHandler notification, IMapper mapper,
                                IUserAppServices userappService,
                                IRegisterAppService registerAppService,
                                IQueryAppService localsAppService,
                                JsonServices jsonService) : base(notification, userappService)
 {
     _registerAppService = registerAppService;
     _localsAppService   = localsAppService;
     _jsonService        = jsonService;
     _mapper             = mapper;
 }
示例#2
0
 /// <summary>
 /// 初始化一个<see cref="QueryControllerBase{TDto,TQuery}"/>类型的实例
 /// </summary>
 /// <param name="service">查询服务</param>
 protected QueryControllerBase(IQueryAppService <TDto, TQuery> service)
 {
     _service = service;
 }
示例#3
0
 public DropDownListViewComponent(IQueryAppService appService)
 {
     _appService = appService;
 }
示例#4
0
 public GerenciaRegrasViewComponent(IQueryAppService appService, JsonServices jsonService)
 {
     _appService  = appService;
     _jsonService = jsonService;
 }