public void UpdateAsset(int id, string status) { AssetDAO assetDAO = new AssetDAO(); assetDAO.UpdateAsset(id, status); }
public List <string> GetAllAssetStatus() { AssetDAO assetDAO = new AssetDAO(); return(assetDAO.GetAllAssetStatus()); }
public List <Asset_Status> GetAllAssetStatusByID() { AssetDAO assetDAO = new AssetDAO(); return(assetDAO.GetAllAssetStatusByID()); }
public List <Asset> GetAllAsset() { AssetDAO assetDAO = new AssetDAO(); return(assetDAO.GetAllAsset()); }