Exemplo n.º 1
0
 public SanPhamController(
     ISanPhamService spService,
     ILoaiSanPhamService lspService
     )
 {
     this._spService  = spService;
     this._lspService = lspService;
 }
Exemplo n.º 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;
 }
Exemplo n.º 3
0
 public SanPhamController(
     INhaCungCapService nccService,
     INhaSanXuatService nsxService,
     ILoaiSanPhamService lspService,
     ISanPhamService spService
     )
 {
     this._nccService = nccService;
     this._nsxService = nsxService;
     this._lspService = lspService;
     this._spService  = spService;
 }
Exemplo n.º 4
0
 public LoaiSanPhamController(ILoaiSanPhamService lspService)
 {
     this._lspService = lspService;
 }
Exemplo n.º 5
0
 public LoaiSanPhamController(IErrorService errorService, ILoaiSanPhamService loaiSanPhamService)
     : base(errorService)
 {
     this._loaiSanPhamService = loaiSanPhamService;
 }