Template
72 lines
3.3 KiB
C#
72 lines
3.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Config = Strata.ContinuousImprovement.Biz.Configuration;
|
|
|
|
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
|
{
|
|
public partial class JazzEntityFrameworkFactory
|
|
{
|
|
|
|
#region Configurations
|
|
|
|
public List<Config.Configuration> Configurations =
|
|
new List<Config.Configuration> {
|
|
new Config.Configuration
|
|
{
|
|
ConfigurationGuid = CurrentConfigurationGuid,
|
|
DisplayOrder = 0,
|
|
Name = "Test1",
|
|
CustomEntityIdsCSV = ",,0,1,2,2,2,2,3,5,a,b,c",
|
|
EntityIdsCSV = ",,0,1,2,2,2,2,3,a,b,c",
|
|
DepartmentRollupGlobalId = "Entity",
|
|
ServiceLineDimensionGuid = Guid.NewGuid(),
|
|
QVIOpportunityBreakdown = Config.Configuration.QVIOpportunityBreakdowns.ServiceLine,
|
|
OrgDefinedEndDate = DateTime.Now.AddMonths(1 - DateTime.Now.Month),
|
|
FiscalYearID = (short)DateTime.Now.Year
|
|
},
|
|
new Config.Configuration
|
|
{
|
|
ConfigurationGuid = Guid.NewGuid(),
|
|
DisplayOrder = 1,
|
|
Name = "Test3",
|
|
CustomEntityIdsCSV = ",,0,1,2,2,2,2,3,a,b,c",
|
|
EntityIdsCSV = ",,0,1,2,2,2,2,3,4,a,b,c",
|
|
DepartmentRollupGlobalId = string.Empty,
|
|
ServiceLineDimensionGuid = Guid.Empty,
|
|
QVIOpportunityBreakdown = Config.Configuration.QVIOpportunityBreakdowns.PhysicianSpecialty,
|
|
OrgDefinedEndDate = DateTime.Now.AddYears(-1).AddMonths(1 - DateTime.Now.Month),
|
|
FiscalYearID = (short)DateTime.Now.AddYears(-1).Year
|
|
},
|
|
new Config.Configuration
|
|
{
|
|
ConfigurationGuid = Guid.NewGuid(),
|
|
DisplayOrder = 2,
|
|
Name = "Test2",
|
|
CustomEntityIdsCSV = ",,0,1,2,2,2,2,3,a,b,c",
|
|
EntityIdsCSV = ",,0,1,2,2,2,2,3,4,a,b,c",
|
|
DepartmentRollupGlobalId = string.Empty,
|
|
ServiceLineDimensionGuid = Guid.Empty,
|
|
QVIOpportunityBreakdown = Config.Configuration.QVIOpportunityBreakdowns.Entity,
|
|
OrgDefinedEndDate = DateTime.Now.AddYears(-2).AddMonths(1 - DateTime.Now.Month),
|
|
FiscalYearID = (short)DateTime.Now.AddYears(-2).Year
|
|
},
|
|
new Config.Configuration
|
|
{
|
|
ConfigurationGuid = Guid.NewGuid(),
|
|
DisplayOrder = 3,
|
|
Name = "Test4",
|
|
CustomEntityIdsCSV = ",,0,1,2,2,2,2,3,a,b,c",
|
|
EntityIdsCSV = ",,0,1,2,2,2,2,3,4,a,b,c",
|
|
DepartmentRollupGlobalId = string.Empty,
|
|
ServiceLineDimensionGuid = Guid.Empty,
|
|
QVIOpportunityBreakdown = Config.Configuration.QVIOpportunityBreakdowns.Entity,
|
|
OrgDefinedEndDate = DateTime.Now.AddYears(-3).AddMonths(1 - DateTime.Now.Month),
|
|
FiscalYearID = (short)DateTime.Now.AddYears(-3).Year
|
|
}
|
|
};
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|