Template
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using Strata.ContinuousImprovement.Biz.UtilizationVariation;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
|
{
|
|
public partial class JazzEntityFrameworkFactory
|
|
{
|
|
#region Opportunities
|
|
|
|
public List<DimEntity> DimEntities =
|
|
new List<DimEntity>
|
|
{
|
|
new DimEntity
|
|
{
|
|
EntityID = 1,
|
|
MemberGUID = Guid.NewGuid(),
|
|
Code = "1",
|
|
Description = "Description",
|
|
SortOrder = 1,
|
|
EntityType = 0,
|
|
IsActive = true,
|
|
Name = "Name"
|
|
},
|
|
new DimEntity
|
|
{
|
|
EntityID = 2,
|
|
MemberGUID = Guid.NewGuid(),
|
|
Code = "1",
|
|
Description = "Description",
|
|
SortOrder = 1,
|
|
EntityType = 0,
|
|
IsActive = true,
|
|
Name = "Name"
|
|
}
|
|
};
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|