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

            AssetType at = new AssetType();

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