예제 #1
0
        public void UpdateAsset(int id, string status)
        {
            AssetDAO assetDAO = new AssetDAO();

            assetDAO.UpdateAsset(id, status);
        }
예제 #2
0
        public List <string> GetAllAssetStatus()
        {
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetAllAssetStatus());
        }
예제 #3
0
        public List <Asset_Status> GetAllAssetStatusByID()
        {
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetAllAssetStatusByID());
        }
예제 #4
0
        public List <Asset> GetAllAsset()
        {
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetAllAsset());
        }