public PurchaseOrderController(IRepository <PurchaseOrder> repository, ICompositeRepository <LocationItem> locationItemRepository, IUnitOfWork unitOfWork, IMapper mapper) { _repository = repository; _locationItemRepository = locationItemRepository; _unitOfWork = unitOfWork; _mapper = mapper; }
public SupplyController(IRepository <Supply> repository, ICompositeRepository <LocationItem> locationItemRepository, IUnitOfWork unitOfWork, IMapper mapper) { _repository = repository; _locationItemRepository = locationItemRepository; _unitOfWork = unitOfWork; _mapper = mapper; }
public LocationItemController(ICompositeRepository <LocationItem> repository, IItemRepository itemRepository, IUnitOfWork unitOfWork, IMapper mapper) { _repository = repository; _itemRepository = itemRepository; _unitOfWork = unitOfWork; _mapper = mapper; }