Beispiel #1
0
 public ProductController(IMapper mapper, IAppProductRepository appProductRepository)
 {
     _mapper = mapper;
     _appProductRepository = appProductRepository;
 }
Beispiel #2
0
 public AppProductController(IAppProductRepository ir) => repo = ir;