public DuAnController(
     ErrorService errorService,
     IDuAnService daService,
     IHangMucService hangmucService,
     IThamGiaService thamGia) : base(errorService)
 {
     this._daService      = daService;
     this._thamGia        = thamGia;
     this._hangmucService = hangmucService;
 }
 public ApplicationUserController(
     ErrorService errorService,
     ApplicationUserManager userManager,
     IApplicationGroupService applicationGroupService,
     IApplicationRoleService applicationRoleService,
     IDuAnService duAnService) : base(errorService)
 {
     this._userManager             = userManager;
     this._applicationGroupService = applicationGroupService;
     this._applicationRoleService  = applicationRoleService;
     this._duanService             = duAnService;
 }
 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;
 }
예제 #4
0
 public DuAnController(IDuAnService duAnService)
 {
     _duAnService = duAnService;
 }
 public DuAnController(DuAnService duAnService, IThamGiaService thamgiaService, IHangMucService hangMucService)
 {
     this._duAnService    = duAnService;
     this._thamgiaService = thamgiaService;
     this._hangMucService = hangMucService;
 }