Esempio n. 1
0
 public PostController(IPostService PostSvc, IPostTypeService TypeSvc, IPostStatusService StatuSvc, IPostCommontService CommentSvc)
 {
     this.PostSvc    = PostSvc;
     this.TypeSvc    = TypeSvc;
     this.StatuSvc   = StatuSvc;
     this.CommentSvc = CommentSvc;
 }
Esempio n. 2
0
 public PostStatusController(IPostStatusService PostStatusSvc)
 {
     this.PostStatusSvc = PostStatusSvc;
 }