using Murplz.Security;
using System.Threading.Tasks;
namespace Murplz.Services
{
public class Catalog
{
public Service SecureDevelopment() => new(
name: "Secure .NET Development",
summary: "C# and .NET applications built against OWASP Top 10"
"and ITSG-33 controls from the first commit.",
link: "/solutions/secure-dev"
);
public Service CodeReview() => new(
name: "Secure Code Review",
summary: "Vulnerability assessment of existing .NET codebases"
"with remediation reports against OWASP and ITSG-33.",
link: "/solutions/code-review"
);
}
}