WIP: хочу знать сколько тут изменений #2

Draft
TImourka wants to merge 11 commits from mongoDB into main
2 changed files with 7 additions and 5 deletions
Showing only changes of commit 41bd027470 - Show all commits

View File

@ -12,11 +12,7 @@ namespace database
private IMongoCollection<Branch> _branchCollection;
private IMongoCollection<Status> _statusCollection;
private IMongoCollection<BodyType> _bodyTypeCollection;
private class Sequence
{
public string Id;
public int count;
}
private IMongoCollection<Sequence> _sequenceCollection;
public ImplementationMongoDB()

View File

@ -78,4 +78,10 @@ namespace database
public string Text { get; set; }
public int Id { get; set; }
}
public class Sequence
{
[BsonRepresentation(BsonType.String)]
public string Id { get; set; }
public int count { get; set; }
}
}