Exemplo n.º 1
0
 public OwnerController(IOwnerAppService ownerAppService, IMapper mapper)
 {
     _ownerAppService = ownerAppService;
     _mapper          = mapper;
 }
Exemplo n.º 2
0
 public StoreManagerController(IProductAppService productAppService, IOwnerAppService ownerAppService, ICategoryAppService categoryAppService)
 {
     _productAppService = productAppService;
     _ownerAppService = ownerAppService;
     _categoryAppService = categoryAppService;
 }