Пример #1
0
 public ThongKeController(IThongKe _IThongKe, IDonHang _IDonHang, IFSanpham _IFSanPham, IConfiguration configuration)
 {
     IThongKe      = _IThongKe;
     IDonHang      = _IDonHang;
     IFSanPham     = _IFSanPham;
     Configuration = configuration;
 }
Пример #2
0
 static thongkeService()
 {
     repository = new ThongKe();
 }
Пример #3
0
 public ThongKePresenter(IThongKe _view, IThongKeRepository _repository)
 {
     this.view       = _view;
     repository      = _repository;
     _view.Presenter = this;
 }
Пример #4
0
 public ThongKePresenter(IThongKe _view) : this(_view, new ThongKeRepository())
 {
 }