Template
22 lines
596 B
C#
22 lines
596 B
C#
using Strata.ContinuousImprovement.Biz.Shared;
|
|
using Strata.ContinuousImprovement.Biz.UserSetting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
|
{
|
|
public partial class JazzEntityFrameworkFactory
|
|
{
|
|
public List<SystemSetting> SystemSettings =
|
|
new List<SystemSetting>
|
|
{
|
|
new SystemSetting
|
|
{
|
|
Name = "Flexible Exploration Inpatient Case Type Family",
|
|
Value = "1"
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|