public HangMucController(
     IHangMucService hangMucService,
     IHeSoNhanCongService heSoNhanCongService,
     IThamGiaService thamGiaService,
     IDuAnService duAnService,
     ErrorService error) : base(error)
 {
     this._hangMucService      = hangMucService;
     this._heSoNhanCongService = heSoNhanCongService;
     this._thamGiaService      = thamGiaService;
     this._duAnService         = duAnService;
 }
 public HeSoNhanCongController(ErrorService errorService, IHeSoNhanCongService heSoNhanCongService) : base(errorService)
 {
     this._heSoNhanCongService = heSoNhanCongService;
 }