public async Task <int> ExecuteAsync(GetServicesCommand command)
        {
            var services = _templatesService.GetServices(command.ProjectType, command.FrontendFramework, command.BackendFramework);

            _messageService.SendResult(MessageType.GetServicesResult, services);

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