Beispiel #1
0
 public BsonDocument Parse(Artists resource)
 {
     return new BsonDocument()
     {
         { "_id", resource._id },
         { "name", resource.name },
         { "style", resource.style },
         { "year", resource.year }
     };
 }
Beispiel #2
0
 private bool printArtistData(Artists artist)
 {
     return true;
 }