我开始为我的 MVC 项目实现一个服务层,以减少一些臃肿的控制器(它也有存储库/工作单元模式)。
我的问题是,如果您有一个包含大量子对象等的页面的复杂视图模型,并且在幕后进行了大量逻辑(让您了解原始开发人员编写的控制器有近 4000 行代码! !)可以让多个服务停止做他们的事情吗?还是我应该只拥有一个可以完成所有工作的大型 ReportService?
我的控制器开始看起来像这样?如果我继续下去,我最终可能会调用很多不同的服务来构建视图模型。
这看起来不错还是开始朝错误的方向发展?
public ViewResult Index(int? reportId)
{
// get the base report object
var reportService = new ReportService();
var report = reportService.GetByReportId(reportId);
var model = Mapper.Map<Report, ReportViewModel>(report);
// get the current active user
var userService = new UserService();
var user = userService.GetCurrentUser();
model.User = Mapper.Map<User, ReportViewModel.UserViewModel>(user);
// get the first unread message
var messageService = new MessageService();
var message = messageService.GetFirstUnread(user.Id);
model.Message = Mapper.Map<Message, ReportViewModel.MessageViewModel>(message);
// get the category navigation
var categoryService = new CategoryService();
var categoryNavigation = categoryService.GetCategoryNavigation(report.Id);
model.CategoryNavigation = Mapper.Map<IEnumerable<Category>, IEnumerable<ReportViewModel.CategoryNavigationViewModel>>(categoryNavigation);
return View(model);
}