Example #1
0
 public NhapHangController(INhapHangS nhaphangs, INguoiDungService nguoidungs, IXeS ixes, ICTNhapHangS ictnhaphangs)
 {
     this.nhaphangs    = nhaphangs;
     this.nguoidungs   = nguoidungs;
     this.ixes         = ixes;
     this.ictnhaphangs = ictnhaphangs;
 }
Example #2
0
 public PhieuHenKhamService(IPhieuHenKhamRepository phieuHenKhamRepository, IUnitOfWork unitOfWork, ITaiKhoanService taiKhoanService, INguoiDungService nguoiDungService)
 {
     _phieuHenKhamRepository = phieuHenKhamRepository;
     _unitOfWork             = unitOfWork;
     _taiKhoanService        = taiKhoanService;
     _nguoiDungService       = nguoiDungService;
 }
 public HoaDonController(IHoaDonS ihoadons, INguoiDungService inguoiDungs, IKhachHangS ikhachhangs, ICTHoaDonS icthoadons, IXeS ixes)
 {
     this.ihoadons    = ihoadons;
     this.inguoiDungs = inguoiDungs;
     this.ikhachhangs = ikhachhangs;
     this.icthoadons  = icthoadons;
     this.ixes        = ixes;
 }
Example #4
0
 public TaiKhoanController(IErrorService errorService, ITaiKhoanService taiKhoanService, INguoiDungService nguoiDungService, ICoSoThuYService coSoThuYService, IShopService shopService)
     : base(errorService)
 {
     _taiKhoanService  = taiKhoanService;
     _nguoiDungService = nguoiDungService;
     _coSoThuYService  = coSoThuYService;
     _shopService      = shopService;
 }
Example #5
0
 public HoaDonController(
     IErrorService errorService,
     IHoaDonService hoaDonService,
     IChiTietHoaDonService chiTietHoaDonService,
     ISanPhamService sanPhamService,
     INguoiDungService nguoiDungService,
     ITaiKhoanService taiKhoanService
     )
     : base(errorService)
 {
     _hoaDonService        = hoaDonService;
     _chiTietHoaDonService = chiTietHoaDonService;
     _sanPhamService       = sanPhamService;
     _nguoiDungService     = nguoiDungService;
     _taiKhoanService      = taiKhoanService;
 }
Example #6
0
 public BaseController(IBenhAnService _benhanService,
                       ICTDTService _ctdtService,
                       ICTHDService _cthdService,
                       IDInhNghiaGiaTriService _dngtService,
                       IDonThuocService _donthuocService,
                       IGiaTriMacDinhService _gtmdService,
                       IHoaDonService _hoadonService,
                       IBenhNhanService _benhnhanService,
                       ILichKhamService _lichkhamService,
                       INguoiDungService _nguoidungService,
                       IThuocService _thuocService)
 {
     this._benhanService    = _benhanService;
     this._ctdtService      = _ctdtService;
     this._cthdService      = _cthdService;
     this._dngtService      = _dngtService;
     this._donthuocService  = _donthuocService;
     this._gtmdService      = _gtmdService;
     this._hoadonService    = _hoadonService;
     this._benhnhanService  = _benhnhanService;
     this._lichkhamService  = _lichkhamService;
     this._nguoidungService = _nguoidungService;
     this._thuocService     = _thuocService;
 }
Example #7
0
 public CTHDController(IBenhAnService _benhanService, ICTDTService _ctdtService, ICTHDService _cthdService, IDInhNghiaGiaTriService _dngtService, IDonThuocService _donthuocService, IGiaTriMacDinhService _gtmdService, IHoaDonService _hoadonService, IBenhNhanService _benhnhanService, ILichKhamService _lichkhamService, INguoiDungService _nguoidungService, IThuocService _thuocService) : base(_benhanService, _ctdtService, _cthdService, _dngtService, _donthuocService, _gtmdService, _hoadonService, _benhnhanService, _lichkhamService, _nguoidungService, _thuocService)
 {
 }
Example #8
0
 public NguoiDungController(INguoiDungService iNguoiDungService)
 {
     this.iNguoiDungService = iNguoiDungService;
 }
Example #9
0
 public NguoiDungController(INguoiDungService nguoiDungService, IUploadService uploadService)
 {
     _nguoiDungService = nguoiDungService;
     _uploadService    = uploadService;
 }
Example #10
0
 public NguoiDungController(IErrorService errorService, INguoiDungService nguoiDungService, ITaiKhoanService taiKhoanService)
     : base(errorService)
 {
     _nguoiDungService = nguoiDungService;
     _taiKhoanService  = taiKhoanService;
 }
Example #11
0
 public NguoiDungController(INguoiDungService service)
 {
     _service = service;
 }
 public PhieuHenKhamController(IErrorService errorService, IPhieuHenKhamService phieuHenKhamService, INguoiDungService nguoiDungService)
     : base(errorService)
 {
     _phieuHenKhamService = phieuHenKhamService;
     _nguoiDungService    = nguoiDungService;
 }