Example #1
0
 public void Add(Citation citation)
 {
     citations[citation.Key] = citation;
 }
Example #2
0
 public CitationBuilder(string key, string type)
 {
     citation = new Citation(key);
     citation[nameof(type)] = new TextVariable(type);
 }
Example #3
0
 public CitationBuilder(string key, CitationType type)
 {
     citation = new Citation(key);
     citation[nameof(type)] = new TextVariable(TransformType(type));
 }