Exemple #1
0
 public OwnerController(IOwnerAppService ownerAppService, IMapper mapper)
 {
     _ownerAppService = ownerAppService;
     _mapper          = mapper;
 }
 public StoreManagerController(IProductAppService productAppService, IOwnerAppService ownerAppService, ICategoryAppService categoryAppService)
 {
     _productAppService = productAppService;
     _ownerAppService = ownerAppService;
     _categoryAppService = categoryAppService;
 }