public PhieuSangLocController(IErrorService errorService, IPhieuSangLocService _phieuSangLocService, IPatientService _patientService, IDonViCoSoService _donViCoSoService, ApplicationUserManager _userManager) : base(errorService)
 {
     this.phieuSangLocService = _phieuSangLocService;
     this.donViCoSoService    = _donViCoSoService;
     this.patientService      = _patientService;
     this.userManager         = _userManager;
 }
Example #2
0
 public DonViCoSoController(IErrorService errorService, IDonViCoSoService _donViCoSoService, IDanhMucChiCucService _chiCucService, ApplicationUserManager _userManager, IGoiDichVuDVCSService _goidvtheodvcsService, IGoiDichVuTheoTrungTamService _goidctheotrungtamService) : base(errorService)
 {
     this.donViCoSoService         = _donViCoSoService;
     this.chiCucService            = _chiCucService;
     this.userManager              = _userManager;
     this.goidvtheodvcsService     = _goidvtheodvcsService;
     this.goidvtheotrungtamService = _goidctheotrungtamService;
 }
 public ApplicationUserController(
     IApplicationGroupService appGroupService,
     IApplicationRoleService appRoleService,
     ApplicationUserManager userManager,
     IDonViCoSoService donViCoSoService,
     IApplicationUserRoleService applicationUserRoleService,
     IErrorService errorService)
     : base(errorService)
 {
     _appRoleService             = appRoleService;
     _appGroupService            = appGroupService;
     _userManager                = userManager;
     _donViCoSoService           = donViCoSoService;
     _applicationUserRoleService = applicationUserRoleService;
 }
Example #4
0
 public DonViCoSoController(IErrorService errorService, IDonViCoSoService _donViCoSoService, IDanhMucChiCucService _chiCucService) : base(errorService)
 {
     this.donViCoSoService = _donViCoSoService;
     this.chiCucService    = _chiCucService;
 }