Exemple #1
0
 public PostStatusController(PostStatusService StatuSvc)
 {
     this.StatuSvc = StatuSvc;
 }
 public PostStatusController(PostStatusService statusService)
 {
     _statusService = statusService;
 }
 public PostController(PostService PostSvc, UserService UserSvc, PostStatusService PsSVC)
 {
     this.PostSvc = PostSvc;
     this.UserSvc = UserSvc;
     this.PsSVC   = PsSVC;
 }