public StartupService(IStartupRepository startupRepository, IUnitOfWork unitOfWork, IEnterpriseRepository enterpriseRepository, IFavoriteStartupRepository favoriteStartupRepository)
 {
     this.startupRepository         = startupRepository;
     this.unitOfWork                = unitOfWork;
     this.enterpriseRepository      = enterpriseRepository;
     this.favoriteStartupRepository = favoriteStartupRepository;
 }
Beispiel #2
0
 public InstitutionDetailsController(IEnterpriseRepository enterpriseRepository,
                                     IReviewRepository revRepo, IBanRepository banRepo)
 {
     entRepository    = enterpriseRepository;
     reviewRepository = revRepo;
     banRepository    = banRepo;
 }
Beispiel #3
0
 public EnterpriseService(IUnitOfWorkEnterprises uow, IMapper mapper)
 {
     _uow         = uow;
     _enterprises = uow.Enterprises;
     _types       = uow.Types;
     _mapper      = mapper;
 }
 public UnitOfWorkEnterprise(EmpresasContext context
                             , IEnterpriseRepository enterpriseRepository
                             , IEnterpriseTypeRepository enterpriseTypeRepository)
     : base(context)
 {
     Enterprises = enterpriseRepository;
     Types       = enterpriseTypeRepository;
 }
Beispiel #5
0
 public CarService(IUserRepository repo1, IEnterpriseRepository ep, ICarRepository repo, ISpecialOfferRepository aaa, IUnitOfWork unitOfWork)
 {
     this.repo2      = ep;
     this.repo       = repo;
     this.unitOfWork = unitOfWork;
     this.repo3      = aaa;
     this.repo5      = repo1;
 }
Beispiel #6
0
        public ProfileToInput(IUnitOfWorkEnterprises uow)
        {
            enterprises = uow.Enterprises;
            types       = uow.Types;

            CreateMap <EnterpriseFilter, Enterprise>();

            CreateMap <EnterpriseType, EnterpriseTypeOutput>();
        }
Beispiel #7
0
 public EnterpriseService(IEnterpriseRepository repository, IToyRepository toyRepository, IMapper mapper)
 {
     this.repository    = repository;
     this.toyRepository = toyRepository;
     this.mapper        = mapper;
 }
Beispiel #8
0
 public ToyService(IToyRepository repository, IEnterpriseRepository enterpriseRepository, IMapper mapper)
 {
     this.repository           = repository;
     this.mapper               = mapper;
     this.enterpriseRepository = enterpriseRepository;
 }
Beispiel #9
0
 public InfoRelationship()
 {
     this.relationshipRepository = new RelationshipRepository();
     this.enterpriseRepository   = new EnterpriseRepository();
     this.userRepository         = new UserRepository();
 }
 public EnterpriseService(IEnterpriseRepository enterpriseRepository, ContactDBContext dbContext)
 {
     _enterpriseRepository = enterpriseRepository;
 }
Beispiel #11
0
 public Owner1Controller(IOwnerRepository ownerRepository, IEnterpriseRepository enterRepositority)
 {
     repository             = ownerRepository;
     this.enterRepositority = enterRepositority;
 }
Beispiel #12
0
 public EnterpriseImpl(IEnterpriseRepository enterpriseRepository)
 {
     _enterpriseRepository = enterpriseRepository;
 }
Beispiel #13
0
 public UserEnterprises()
 {
     _userEnterpriseRepository = new UserEnterpriseRepository();
     _userRepository           = new UserRepository();
     _enterpriseRepository     = new EnterpriseRepository();
 }
Beispiel #14
0
 public HomeController(IEnterpriseRepository enterpriceRepository)
 {
     entRepository = enterpriceRepository;
 }
 public EnterpriseService(IEnterpriseRepository repository)
 {
     _repository = repository;
 }
Beispiel #16
0
 public EnterpriseHandler(IEnterpriseRepository enterpriseRepository, IMapper mapper)
 {
     _enterpriseRepository = enterpriseRepository;
     _mapper = mapper;
 }
 public EnterpriseService(IEnterpriseRepository enterpriseRepository, IKycService _kycService)
 {
     this.enterpriseRepository = enterpriseRepository;
     this.kycService           = _kycService;
 }
 public RegisterEnterpriseController(IEnterpriseRepository enterpriseRepository)
 {
     repository = enterpriseRepository;
 }
 public EnterpriseController(IEnterpriseRepository repo) => repository = repo;
Beispiel #20
0
 public EnterpriseService(IEnterpriseRepository enterpriseRepository,
                          IUnitOfWork unitOfWork)
 {
     _enterpriseRepository = enterpriseRepository;
     _unitOfWork           = unitOfWork;
 }
Beispiel #21
0
 public listaRelacionamentos()
 {
     this.relacionamentosRepository = new RelacionamentosRepository();
     this.userRepository            = new UserRepository();
     this.enterpriseRepository      = new EnterpriseRepository();
 }
Beispiel #22
0
 public UserPageAppService(IEnterpriseRepository userPageRepository, IMapper mapper, IUnitOfWork unitOfWork, IHandler <DomainNotification> notifications) : base(unitOfWork, notifications)
 {
     this._userPageRepository = userPageRepository;
     this._mapper             = mapper;
 }
Beispiel #23
0
 public EnterpriseController(IEnterpriseRepository enterpriseRepository)
 {
     _enterpriseRepository = enterpriseRepository;
 }
 public EnterpriseService(IEnterpriseRepository repo, IUnitOfWork unitOfWork, ICarRepository repo2)
 {
     this.repo       = repo;
     this.unitOfWork = unitOfWork;
     this.repo2      = repo2;
 }
 public Enterprises()
 {
     this.enterpriseRepository = new EnterpriseRepository();
 }
 public EnterpriseService(IEnterpriseRepository repository, AppSettings appSettings)
     : base(repository, appSettings)
 {
 }
Beispiel #27
0
 public InfoEnterprise()
 {
     this.enterpriseRepository = new EnterpriseRepository();
 }
Beispiel #28
0
 public EnterpriseService(IEnterpriseRepository enterpriseRepository)
     : base(enterpriseRepository)
 {
     _enterpriseRepository = enterpriseRepository;
 }
Beispiel #29
0
 public Relationships()
 {
     this._relationshipRepository = new RelationshipRepository();
     this._userRepository         = new UserRepository();
     this._enterpriseRepository   = new EnterpriseRepository();
 }
Beispiel #30
0
 public Relation()
 {
     this.relationRepository   = new RelationRepository();
     this.userRepository       = new UserRepository();
     this.enterpriseRepository = new EnterpriseRepository();
 }