public ItemService( IDataConverter dataConverter, IItemManager dataManager, IItemCategorization itemCategorization) { _dataConverter = dataConverter; _dataManager = dataManager; _itemCategorization = itemCategorization; }
public ReceiptService() { _imageFormating = new ImageFormating(); _receiptCreating = new ReceiptMaking(); _dataConverter = new DataConverter(); _itemCategorization = new ItemCategorization(); }
public ReceiptService(IImageFormating imageFormating, IReceiptMaking receiptCreating, IDataConverter dataConverter, IItemCategorization itemCategorization) { _imageFormating = imageFormating; _receiptCreating = receiptCreating; _dataConverter = dataConverter; _itemCategorization = itemCategorization; }
public ItemService() { _dataConverter = new DataConverter(); _dataManager = new ItemManager(); _itemCategorization = new ItemCategorization(); }
public ItemService() { _itemCategorization = new ItemCategorization(); }