Idea of the project: if someone wants to order a project development, here you can send an application.
using System;
namespace ProjectRequestTest.Core.DbContext
{
public enum DbTableName
{
ProjectRequest
}
public static class DbTableNameHelper
{
public static string ToName(this DbTableName option)
{
switch (option)
{
default:
return option.ToString();
case DbTableName.ProjectRequest:
return "ProjectRequest";
}
}
}
}