Ejemplo n.º 1
0
        //these functions should include caching, as all objects are stacked upon the large object heap
        public async Task <IActionResult> GetWorkspaceRgbMatrices(string Name)
        {
            WorkspaceItemListViewModel model = await workspaceRepository.GetWorkspaceRgbMatrices(Name, new CancellationToken(), new LoadOptions());

            model.WorkspaceName = Name;
            return(View("ViewWorkspace", model));
        }