Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
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
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user