public BusinessCommentController(IBusinessService businessService, IBusinessCommentService businessCommmentService, IUserService userService)
 {
     this.businessService = businessService;
     this.businessCommmentService = businessCommmentService;
     this.userService = userService;
 }
 public BusinessCommentController(IBusinessCommentService businessCommentService, ILevelService levelService)
 {
     _businessCommentService = businessCommentService;
     _levelService           = levelService;
 }