コード例 #1
0
 public SanPhamController(
     ISanPhamService spService,
     ILoaiSanPhamService lspService
     )
 {
     this._spService  = spService;
     this._lspService = lspService;
 }
コード例 #2
0
 public TrangchuController(
     ILoaiSanPhamService loaiSanPhamService,
     ISanPhamService sanPhamService,
     IThanhVienService thanhVienService,
     ILoaiThanhVien_QuyenService ltv_quyenService
     )
 {
     this._loaiSanPhamService = loaiSanPhamService;
     this._sanPhamService     = sanPhamService;
     this._tvService          = thanhVienService;
     this._ltv_quyenService   = ltv_quyenService;
 }
コード例 #3
0
 public SanPhamController(
     INhaCungCapService nccService,
     INhaSanXuatService nsxService,
     ILoaiSanPhamService lspService,
     ISanPhamService spService
     )
 {
     this._nccService = nccService;
     this._nsxService = nsxService;
     this._lspService = lspService;
     this._spService  = spService;
 }
コード例 #4
0
 public LoaiSanPhamController(ILoaiSanPhamService lspService)
 {
     this._lspService = lspService;
 }
コード例 #5
0
 public LoaiSanPhamController(IErrorService errorService, ILoaiSanPhamService loaiSanPhamService)
     : base(errorService)
 {
     this._loaiSanPhamService = loaiSanPhamService;
 }