This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UserWorkItemIndex : AbstractMultiMapIndexCreationTask<UserWorkItemIndex.Result> | |
{ | |
public class Result | |
{ | |
public string UserId { get; set; } | |
public string DocumentId { get; set; } | |
public int Validated { get; set; } | |
public int Total { get; set; } | |
public string FieldId { get; set; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this code was simplified for the purpose of beeing a sample | |
public class UowDispatchMessageInspector : IDispatchMessageInspector | |
{ | |
private readonly ISessionFactory factory; | |
public UowDispatchMessageInspector(ISessionFactory factory) | |
{ | |
this.factory = factory; | |
} |
NewerOlder