Template
42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
using Strata.ContinuousImprovement.Biz.Exploration.Opportunities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Strata.ContinuousImprovement.Biz.Test.Unit.Stubs
|
|
{
|
|
public partial class JazzEntityFrameworkFactory
|
|
{
|
|
#region Opportunities
|
|
|
|
public List<EXOpportunity> EXOpportunities =
|
|
new List<EXOpportunity>
|
|
{
|
|
new EXOpportunity
|
|
{
|
|
OpportunityGuid = Guid.NewGuid(),
|
|
OpportunityKey = "EX - 101",
|
|
Name = "Exploration Name 1",
|
|
IdentifiedSavings = 1000d,
|
|
InitiativeGuid = Guid.Empty,
|
|
Note = string.Empty,
|
|
IsHidden = false,
|
|
ConfigurationGuid = ConfigurationGuid
|
|
},
|
|
new EXOpportunity
|
|
{
|
|
OpportunityGuid = Guid.NewGuid(),
|
|
OpportunityKey = "EX - 102",
|
|
Name = "Exploration Name 2",
|
|
IdentifiedSavings = 2000d,
|
|
InitiativeGuid = Guid.Empty,
|
|
Note = string.Empty,
|
|
IsHidden = false,
|
|
ConfigurationGuid = ConfigurationGuid
|
|
}
|
|
};
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|