public List <string> GetSupplierNames(string xmlFileName) { //List<string> statuses = new List<string>(); AssetDAO assetDAO = new AssetDAO(); return(assetDAO.GetSupplierNames(xmlFileName)); }
public void RemovePaidAssets(string supplierName) { AssetDAO assetDAO = new AssetDAO(); assetDAO.RemovePaidAssets(supplierName); }
public List <Asset> GetAssets() { AssetDAO assetDAO = new AssetDAO(); return(assetDAO.GetAssets()); }