Ejemplo n.º 1
0
 public AdminController(ISanPhamService sanPhamService, IDonHangService donHangService, INhaCungCapService nhaCungCapService, INhaSanXuatService nhaSanXuatService, IThongSoService thongSoService, IAnhSanPhamService anh, IThongSoKiThuatService thongSoKiThuatService)
 {
     _spService   = sanPhamService;
     _dhService   = donHangService;
     _nccService  = nhaCungCapService;
     _nsxService  = nhaSanXuatService;
     _tsService   = thongSoService;
     _aspService  = anh;
     _tsktService = thongSoKiThuatService;
 }
Ejemplo n.º 2
0
 public SanPhamController(
     INhaCungCapService nccService,
     INhaSanXuatService nsxService,
     ILoaiSanPhamService lspService,
     ISanPhamService spService
     )
 {
     this._nccService = nccService;
     this._nsxService = nsxService;
     this._lspService = lspService;
     this._spService  = spService;
 }
Ejemplo n.º 3
0
 public NhaSanXuatController(INhaSanXuatService nsxService)
 {
     this._nsxService = nsxService;
 }