コード例 #1
0
        //public HomeController(JDDataContext ctx)
        //{
        //    _ctx = ctx;
        //}

        public HomeController(INPC_SituacaoRepository situacaoRepo, IHostingEnvironment hostingEnvironment,
                              IAnexoRepository anexoRepo, IUnityOfWork uow)
        {
            _situacaoRepo       = situacaoRepo;
            _hostingEnvironment = hostingEnvironment;
            _anexoRepo          = anexoRepo;
            _uow = uow;
        }
コード例 #2
0
 public AnexoBusiness(IAnexoRepository repository)
 {
     _repository = repository;
 }
コード例 #3
0
ファイル: AnexoService.cs プロジェクト: TiagoPavloski/GST
 public AnexoService(IAnexoRepository anexoRepository)
 {
     _anexoRepository = anexoRepository;
 }