Example #1
0
 public Card(BoardCard prefab, CardPopup cardPopup, IAssetManagementService assetManagementService, ICard data,
             BoardCard boardCard)
 {
     UpdateData(data);
     _AssetManagementService = assetManagementService;
     _Prefab    = prefab;
     _CardPopup = cardPopup;
     BoardCard  = boardCard;
 }
Example #2
0
 public AssetManagementController(
     IAssetManagementService assetService,
     IProductManagementService productMangement,
     ICostCenterService costCenterService,
     IMapper mapper,
     IWorkContext workContext
     )
 {
     _assetService      = assetService;
     _productMangement  = productMangement;
     _costCenterService = costCenterService;
     _mapper            = mapper;
     _workContext       = workContext;
 }