예제 #1
0
 public ItemService(
     IDataConverter dataConverter, IItemManager dataManager, IItemCategorization itemCategorization)
 {
     _dataConverter      = dataConverter;
     _dataManager        = dataManager;
     _itemCategorization = itemCategorization;
 }
예제 #2
0
 public ReceiptService()
 {
     _imageFormating     = new ImageFormating();
     _receiptCreating    = new ReceiptMaking();
     _dataConverter      = new DataConverter();
     _itemCategorization = new ItemCategorization();
 }
예제 #3
0
 public ReceiptService(IImageFormating imageFormating, IReceiptMaking receiptCreating, IDataConverter dataConverter, IItemCategorization itemCategorization)
 {
     _imageFormating     = imageFormating;
     _receiptCreating    = receiptCreating;
     _dataConverter      = dataConverter;
     _itemCategorization = itemCategorization;
 }
예제 #4
0
 public ItemService()
 {
     _dataConverter      = new DataConverter();
     _dataManager        = new ItemManager();
     _itemCategorization = new ItemCategorization();
 }
예제 #5
0
 public ItemService()
 {
     _itemCategorization = new ItemCategorization();
 }