Ejemplo n.º 1
0
        public async Task <int> ExecuteAsync(GetLayoutsCommand command)
        {
            var layouts = _templatesService.GetLayouts(command.ProjectType, command.FrontendFramework, command.BackendFramework);

            _messageService.SendResult(MessageType.GetLayoutsResult, layouts);

            return(await Task.FromResult(0));
        }