Example #1
0
 public PostFinderByUser(IDatabase database, IPostViewMapper postMapper)
 {
     this.database   = database;
     this.postMapper = postMapper;
 }
Example #2
0
 public PostFinderByNew(IDatabase database, IPostViewMapper mapper)
 {
     this.database = database;
     this.mapper   = mapper;
 }
Example #3
0
 public PostUpdater(IDatabase database, PermissionHandler <Post> postPermissionHandler, IPostViewMapper postMapper)
 {
     this.database = database;
     this.postPermissionHandler = postPermissionHandler;
     this.postMapper            = postMapper;
 }
Example #4
0
 public PostCreator(IDatabase database, IPostViewMapper postMapper)
 {
     this.database   = database;
     this.postMapper = postMapper;
 }