//
        // GET: /AssetType/
        public IPagedResponse <IAssetType> GetAll()
        {
            int page = 1;
            int size = 10;

            AssetType at = new AssetType();

            return(at.GetAll(page, size));
        }