Beispiel #1
0
        public List <string> GetSupplierNames(string xmlFileName)
        {
            //List<string> statuses = new List<string>();
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetSupplierNames(xmlFileName));
        }
Beispiel #2
0
        public void RemovePaidAssets(string supplierName)
        {
            AssetDAO assetDAO = new AssetDAO();

            assetDAO.RemovePaidAssets(supplierName);
        }
Beispiel #3
0
        public List <Asset> GetAssets()
        {
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetAssets());
        }