Exemplo n.º 1
0
        public void UpdateAsset(int id, string status)
        {
            AssetDAO assetDAO = new AssetDAO();

            assetDAO.UpdateAsset(id, status);
        }
Exemplo n.º 2
0
        public List <string> GetAllAssetStatus()
        {
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetAllAssetStatus());
        }
Exemplo n.º 3
0
        public List <Asset_Status> GetAllAssetStatusByID()
        {
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetAllAssetStatusByID());
        }
Exemplo n.º 4
0
        public List <Asset> GetAllAsset()
        {
            AssetDAO assetDAO = new AssetDAO();

            return(assetDAO.GetAllAsset());
        }