public ToChucController(IToChucRepository tochucRepository,
     ILoaiHinhToChucRepository loaihinhtochucRepository,
     ITaiKhoanRepository taikhoanRepository,
     IFileStore fileStore)
 {
     this._tochucRepository = tochucRepository;
     this._loaihinhtochucRepository = loaihinhtochucRepository;
     this._taikhoanRepository = taikhoanRepository;
     this._fileStore = fileStore;
 }
 public QLGiayPhepController(IToChucRepository tochucRepository, ITaiKhoanRepository taikhoanRepository,
     IHoSoGiayPhepRepository gphdRepository, ITinhTrangGiayPhepRepository ttgpRepository,
     IDangKyHoatDongRepository dkhdRespository, IHoatDongRepository hoatdongRepository,
     INangLucKeKhaiRespository nanglucRespository)
 {
     this._tochucRepository = tochucRepository;
     this._taikhoanRepository = taikhoanRepository;
     this._gphdRepository = gphdRepository;
     this._ttgpRepository = ttgpRepository;
     this._dkhdRespository = dkhdRespository;
     this._hoatdongRespository = hoatdongRepository;
        this._nanglucRespository = nanglucRespository;
       // this._bchdRespository = bchdRespository;
 }
 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;
 }
 public TaiKhoanController(ITaiKhoanRepository taikhoanRepository, IFormsAuthenticationService formService, IToChucRepository tochucRepository)
 {
     _TaiKhoanRepository = taikhoanRepository;
     _FormsService = formService;
     _ToChucRepository = tochucRepository;
 }