Exemplo n.º 1
0
 private LinhVucPresenter(ILinhVucForm _view, ILinhVucRepository _repository, IModelStateWraper _state)
 {
     state           = _state;
     view            = _view;
     repository      = _repository;
     _view.Presenter = this;
 }
Exemplo n.º 2
0
 public ManagerController(IKhungRepository khungRepository, ICapDonViHanhChinhRepository donViHanhChinhRepository,
                          ILoaiToChucRepository loaiToChucRepository, ILinhVucRepository linhVucRepository)
 {
     _khungRepository          = khungRepository;
     _donViHanhChinhRepository = donViHanhChinhRepository;
     _loaiToChucRepository     = loaiToChucRepository;
     _linhVucRepository        = linhVucRepository;
 }
Exemplo n.º 3
0
 public ThuTucHanhChinhService(
     IDuongDiQuyTrinhRepository duongDiQuyTrinhRepository,
     IThuTucHanhChinhBoRepository thuTucHanhChinhRepository,
     ILinhVucRepository linhVucRepository,
     IThuTucHanhChinhRepository thuTucHanhChinhRepositories,
     IParameterRepository parameterRepository)
 {
     _duongDiQuyTrinhRepository   = duongDiQuyTrinhRepository;
     _thuTucHanhChinhRepository   = thuTucHanhChinhRepository;
     _linhVucRepository           = linhVucRepository;
     _thuTucHanhChinhRepositories = thuTucHanhChinhRepositories;
 }
Exemplo n.º 4
0
 public QuanTriService(
     ILinhVucRepository linhVucRepository,
     IParameterRepository parameterRepository,
     IDMCapDonViRepository dmCapDonViRepository,
     IDMDonViRepository dmDonViRepository,
     ITTHCDonViMappingRepository tthcDonViMapRepository,
     IDMHoSoKemTheoRepository hoSoKemTheoMapRepository)
 {
     _parameterRepository      = parameterRepository;
     _linhVucRepository        = linhVucRepository;
     _dmCapDonViRepository     = dmCapDonViRepository;
     _tthcDonViMapRepository   = tthcDonViMapRepository;
     _dmDonViRepository        = dmDonViRepository;
     _hoSoKemTheoMapRepository = hoSoKemTheoMapRepository;
 }
Exemplo n.º 5
0
 public LinhVucService(ILinhVucRepository linhVucRepository, IUnitOfWork unitOfWork)
 {
     this._linhVucRepository = linhVucRepository;
     this._unitOfWork        = unitOfWork;
 }