Exemple #1
0
 public XdPointsController(IAsyncRepository <T2> elementPointsRepo,
                           IAsyncRepository <T1> elementRepo,
                           IXdPointFactory <T2> xdPointFactory)
 {
     this.elementPointsRepo = elementPointsRepo;
     this.elementRepo       = elementRepo;
     this.xdPointFactory    = xdPointFactory;
 }
 public CommentXdPointController(IAsyncRepository <CommentXdPoint> elementPointsRepo,
                                 IAsyncRepository <Comment> elementRepo,
                                 IXdPointFactory <CommentXdPoint> xdPointFactory) : base(elementPointsRepo, elementRepo, xdPointFactory)
 {
     specification = new CommentXdPointConcreteUserIdAndMemeIdSpec();
 }