Added tests for IdentityUsers

This commit is contained in:
alexandre-spieser
2017-10-29 19:29:43 +00:00
parent 30ea910b9c
commit fbb07475a1
6 changed files with 135 additions and 6 deletions
+1 -2
View File
@@ -13,7 +13,6 @@ namespace MongoDbGenericRepository.Models
/// The Primary Key, which must be decorated with the [BsonId] attribute
/// if you want the MongoDb C# driver to consider it to be the document ID.
/// </summary>
[BsonId]
TKey Id { get; set; }
/// <summary>
/// A version number, to indicate the version of the schema.
@@ -25,7 +24,7 @@ namespace MongoDbGenericRepository.Models
/// This class represents a basic document that can be stored in MongoDb.
/// Your document must implement this class in order for the MongoDbRepository to handle them.
/// </summary>
public interface IDocument: IDocument<Guid>
public interface IDocument : IDocument<Guid>
{
}
}