Initial import into Gitea
This commit is contained in:
@@ -1,14 +1,36 @@
|
||||
namespace Gateway.Data;
|
||||
namespace Gateway.Data;
|
||||
|
||||
public static class SqlNames
|
||||
{
|
||||
public static class Procs
|
||||
{
|
||||
public const string Client = "dbo.spClient";
|
||||
public const string User = "dbo.spUser";
|
||||
// ── Existing ──
|
||||
public const string Client = "dbo.spClient";
|
||||
public const string User = "dbo.spUser";
|
||||
public const string UserClientRole = "dbo.spUserClientRole";
|
||||
public const string AdAccount = "dbo.spAdAccount";
|
||||
public const string AdCampaign = "dbo.spAdCampaign";
|
||||
public const string Invoice = "dbo.spInvoice";
|
||||
public const string AdAccount = "dbo.spAdAccount";
|
||||
public const string AdCampaign = "dbo.spAdCampaign";
|
||||
public const string Invoice = "dbo.spInvoice";
|
||||
|
||||
// ── Multi-Channel ──
|
||||
public const string Initiative = "dbo.spInitiative";
|
||||
public const string ChannelCampaign = "dbo.spChannelCampaign";
|
||||
public const string ChannelConfig = "dbo.spChannelConfig";
|
||||
public const string InitiativeStage = "dbo.spInitiativeStage";
|
||||
public const string Allocation = "dbo.spAllocation";
|
||||
public const string ObjectiveMapping = "dbo.spObjectiveMapping";
|
||||
public const string PerformanceMetric = "dbo.spPerformanceMetric";
|
||||
|
||||
// ── Campaign Wizard ──
|
||||
public const string CampaignWizard = "dbo.spCampaignWizard";
|
||||
public const string TemplateConfig = "dbo.spAdminTemplateConfig";
|
||||
public const string AllocationRecommend = "dbo.spAllocationRecommend";
|
||||
|
||||
// ── Campaign Intelligence ──
|
||||
public const string CampaignIntelligence = "dbo.spCampaignIntelligence";
|
||||
public const string Recommendation = "dbo.spRecommendation";
|
||||
|
||||
// ── Census Demographics ──
|
||||
public const string Demographics = "dbo.spDemographics";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user