public ToChucController(IToChucRepository tochucRepository,
     ILoaiHinhToChucRepository loaihinhtochucRepository,
     ITaiKhoanRepository taikhoanRepository,
     IFileStore fileStore)
 {
     this._tochucRepository = tochucRepository;
     this._loaihinhtochucRepository = loaihinhtochucRepository;
     this._taikhoanRepository = taikhoanRepository;
     this._fileStore = fileStore;
 }
 public DangKyGiayPhepController(IFileStore fileStore, IHoSoGiayPhepRepository gphdRepository, IDangKyHoatDongRepository dkhdRepository,
     IThongTinChungRespository ttcRespository, ILoaiHinhToChucRepository lhtcRepository, IToChucRepository tochucRespository,
     INangLucKeKhaiRespository nanglucRespository, IThietBiRepository thietbiRespository,
     INhanLucRepository nhanlucRespository, IHoatDongRepository hoatdongRespository,
     IBaoCaoHoatDongRepository baocaohdRespository, IBaoCaoCongTrinhRespository baocaoctRespository)
 {
     _fileStore = fileStore;
     _hsgpRepository = gphdRepository;
     _dkhdRespository = dkhdRepository;
     _ttcRespository = ttcRespository;
     _loaihinhtochucRepository = lhtcRepository;
     _tochucRespository = tochucRespository;
     _nanglucRespository = nanglucRespository;
     _thietbiRespository = thietbiRespository;
     _nhanlucRespository = nhanlucRespository;
     _hoatdongRespository = hoatdongRespository;
     _bchdRespository = baocaohdRespository;
     _bcctRespository = baocaoctRespository;
 }