Jstor.Domain.dc.TestDc1 C# (CSharp) Method

TestDc1() public static method

public static TestDc1 ( ) : dc
return dc
        public static dc TestDc1()
        {
            var dc1 = new dc
            {
                title = "Test Title",
                coverage = "dc1coverage"
            };
            dc1.creator = new OrderedSet<DcValue>();
            dc1.creator.Add(new DcValue("Aaa, J"));
            dc1.creator.Add(new DcValue("Bbb, K"));

            return dc1;
        }