public ItemController(IDomainNotificationHandler <DomainNotification> notifications,
                       IUser user,
                       IBus bus,
                       IItemAppService itemAppService,
                       IImpostoAppService impostoAppService,
                       IUsoAppService usoAppService,
                       IProdutoAppService produtoAppService,
                       IMarcaAppService marcaAppService,
                       IModeloAppService modeloAppService)
     : base(notifications, user, bus)
 {
     _itemAppService    = itemAppService;
     _impostoAppService = impostoAppService;
     _usoAppService     = usoAppService;
     _produtoAppService = produtoAppService;
     _marcaAppService   = marcaAppService;
     _modeloAppService  = modeloAppService;
 }
示例#2
0
 public ModelosController(IMapper mapper, IModeloAppService modeloApp)
 {
     _mapper    = mapper;
     _modeloApp = modeloApp;
 }