public DuAnController(
     ErrorService errorService,
     IDuAnService daService,
     IHangMucService hangmucService,
     IThamGiaService thamGia) : base(errorService)
 {
     this._daService      = daService;
     this._thamGia        = thamGia;
     this._hangmucService = hangmucService;
 }
 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 DuAnController(DuAnService duAnService, IThamGiaService thamgiaService, IHangMucService hangMucService)
 {
     this._duAnService    = duAnService;
     this._thamgiaService = thamgiaService;
     this._hangMucService = hangMucService;
 }