public ThongKeController(IThongKe _IThongKe, IDonHang _IDonHang, IFSanpham _IFSanPham, IConfiguration configuration) { IThongKe = _IThongKe; IDonHang = _IDonHang; IFSanPham = _IFSanPham; Configuration = configuration; }
static thongkeService() { repository = new ThongKe(); }
public ThongKePresenter(IThongKe _view, IThongKeRepository _repository) { this.view = _view; repository = _repository; _view.Presenter = this; }
public ThongKePresenter(IThongKe _view) : this(_view, new ThongKeRepository()) { }