public PostFileController(IBlogsFileService fileService, IPostService postService)
 {
     this.fileService = fileService;
     this.postService = postService;
 }
Example #2
0
 public FileModelBinder(IBlogsFileService fileService)
 {
     this.fileService = fileService;
 }
Example #3
0
 public FileController(IBlogsFileService blogsFileService, IPostService postService)
 {
     this.blogsFileService = blogsFileService;
     this.postService      = postService;
 }