Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
using Strata.ContinuousImprovement.Biz.Payroll.Opportunities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
||||
{
|
||||
public partial class JazzEntityFrameworkFactory
|
||||
{
|
||||
#region Opportunities
|
||||
|
||||
public List<PROpportunity> PROpportunities =
|
||||
new List<PROpportunity>()
|
||||
{
|
||||
new PROpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "PR - 101",
|
||||
Name = "PR Name 1",
|
||||
IdentifiedSavings = 1000d,
|
||||
PayrollGoal = "Both",
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new PROpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "PR - 102",
|
||||
Name = "PR Name 2",
|
||||
IdentifiedSavings = 199,
|
||||
PayrollGoal = "Fixed",
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
new PROpportunity
|
||||
{
|
||||
OpportunityGuid = Guid.NewGuid(),
|
||||
OpportunityKey = "PR - 103",
|
||||
Name = "PR Name 3",
|
||||
IdentifiedSavings = 2000d,
|
||||
PayrollGoal = "Variable",
|
||||
InitiativeGuid = Guid.Empty,
|
||||
Note = string.Empty,
|
||||
IsHidden = false,
|
||||
ConfigurationGuid = CurrentConfigurationGuid
|
||||
},
|
||||
};
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user