public ThongKeBusiness(ILoaiRepository l, ISanPhamRepository sp, IThongKeRepository tk, IDonHangRepository dh, IHoaDonNhapRepository hdn, IKhachHangRepository kh) { this.l = l; this.sp = sp; this.tk = tk; this.dh = dh; this.hdn = hdn; this.kh = kh; }
public SanPhamBusiness(ISanPhamRepository isp, IThongKeRepository itk) { this.isp = isp; this.itk = itk; }
public ThongKePresenter(IThongKe _view, IThongKeRepository _repository) { this.view = _view; repository = _repository; _view.Presenter = this; }
public ThongKeController(IThongKeRepository thongkeRespository) { this._thongkeRespository = thongkeRespository; }
public ThongKeController(IThongKeRepository repo) { _repo = repo; }