Exemple #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;
        }
Exemple #2
0
 public AnexoBusiness(IAnexoRepository repository)
 {
     _repository = repository;
 }
Exemple #3
0
 public AnexoService(IAnexoRepository anexoRepository)
 {
     _anexoRepository = anexoRepository;
 }