Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using Strata.ContinuousImprovement.Biz.Generics;
|
||||
using Strata.ContinuousImprovement.Biz.OpportunityComments;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Strata.ContinuousImprovement.JazzEntityFrameworkStub
|
||||
{
|
||||
public partial class JazzEntityFrameworkFactory
|
||||
{
|
||||
public List<Comment> Comments =
|
||||
new List<Comment> {
|
||||
new Comment
|
||||
{
|
||||
CommentDate = new DateTimeOffset(DateTime.UtcNow, TimeSpan.Zero).UtcDateTime,
|
||||
CommentId = 1,
|
||||
CommentText = "This is a comment",
|
||||
Author ="Author Name",
|
||||
OpportunityId = 1,
|
||||
SourceOfSavingsId = (int) OpportunityTypes.ChargeCode,
|
||||
StrataId = 9
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user