Files

22 lines
675 B
C#

using Strata.ContinuousImprovement.Biz.Network;
using System.Collections.Generic;
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
{
public partial class JazzEntityFrameworkFactory
{
public List<ClientNetworkOpportunity> ClientNetworkOpportunities =
new List<ClientNetworkOpportunity> {
new ClientNetworkOpportunity {
StrataId = 9,
IdentifiedSavings = 1000,
IdentifiedSavingsDescription = "IdentifiedSavingsDescription",
AnalyticsWorkbookId = 0,
NetworkOpportunityId = 1,
IsPublished = true
}
};
}
}