Exemplo n.º 1
0
        public List <string> GetAllAssetStatus()
        {
            //List<string> statuses = new List<string>();
            AssetLogDAO assetDAO = new AssetLogDAO();

            return(assetDAO.GetAllAssetStatuses());
        }
Exemplo n.º 2
0
        public string GetAllAssetStatusByID(int id)
        {
            AssetLogDAO assetDAO = new AssetLogDAO();

            return(assetDAO.GetAllAssetStatusByID(id));
        }
Exemplo n.º 3
0
        public List <AssetLog> GetAllAssetLogs()
        {
            AssetLogDAO assetDAO = new AssetLogDAO();

            return(assetDAO.GetAllAssetLogs());
        }
Exemplo n.º 4
0
        public void UpdateAssetLog(int id, string status)
        {
            AssetLogDAO assetDAO = new AssetLogDAO();

            assetDAO.UpdateAssetLog(id, status);
        }