Ejemplo n.º 1
0
 public RecommendController(IColumnRepository column, IRepositoryEF <ColumnEntity> repository, IUnitOfWork unitOfWork, IRepositoryEF <IndexRecommendEntity> indexRecommendRepository)
 {
     this._column         = column;
     this._repository     = repository;
     this._unitOfWork     = unitOfWork;
     this._indexRecommend = indexRecommendRepository;
 }
Ejemplo n.º 2
0
 public RoleRepository(STSysContext dbContext, IRepositoryEF <RelevanceRoleEntity> repositoryEF, IUnitOfWork unitOfWork, IRepositoryEF <ModuleElementEntity> moduleElementRepository, IRepositoryEF <RelevanceElementEntity> relevanceElementRepository) : base(dbContext)
 {
     this._repositoryEF               = repositoryEF;
     this._unitOfWork                 = unitOfWork;
     this._moduleElementRepository    = moduleElementRepository;
     this._relevanceElementRepository = relevanceElementRepository;
 }
Ejemplo n.º 3
0
 public RoleController(IRepositoryEF <RoleEntity> repositoryEF, IMapper mapper, IUnitOfWork unitOfWork, IRoleRepository roleRepository)
 {
     this._repositoryEF   = repositoryEF;
     this._mapper         = mapper;
     this._unitOfWork     = unitOfWork;
     this._roleRepository = roleRepository;
 }
Ejemplo n.º 4
0
 public ModuleController(IRepositoryEF <ModuleEntity> repositoryEF, IMapper mapper, IUnitOfWork unitOfWork, IRepositoryEF <ModuleElementEntity> moduleElementRepository)
 {
     this._repositoryEF            = repositoryEF;
     this._mapper                  = mapper;
     this._unitOfWork              = unitOfWork;
     this._moduleElementRepository = moduleElementRepository;
 }
Ejemplo n.º 5
0
 public ManagerController(IRepositoryEF <ManagerEntities> repositoryEF, IManagerRepository repository, IUnitOfWork unitOfWork, IMapper mapper, IRoleRepository roleRepository)
 {
     this._repositoryEF   = repositoryEF;
     this._repository     = repository;
     this._unitOfWork     = unitOfWork;
     this._mapper         = mapper;
     this._roleRepository = roleRepository;
 }
 public ClientController(IRepositoryEF repo, IClientBusiness client)
 {
     _repo   = repo;
     _client = client;
 }
 public PetShopBusiness(IPetShopRepository petShop, IRepositoryEF repo)
 {
     _petShop = petShop;
     _repo    = repo;
 }
Ejemplo n.º 8
0
 //private readonly IRepository<ManagerEntities> _repository;
 public HomeController(IRepositoryEF <ManagerEntities> repository)
 {
     _repository = repository;
 }
Ejemplo n.º 9
0
 public PetShopController(IRepositoryEF repo, IPetShopBusiness petShop)
 {
     _petShop = petShop;
     _repo    = repo;
 }
Ejemplo n.º 10
0
 public LoginController(IRepository <ManagerEntities> repository, IRepositoryEF <ManagerEntities> repositoryEF, ILogger <LoginController> logger)
 {
     this._repository   = repository;
     this._repositoryEF = repositoryEF;
     this._logger       = logger;
 }
Ejemplo n.º 11
0
 public NavViewComponent(IRepositoryEF <RelevanceRoleEntity> relevanceRole, IRepositoryEF <ModuleEntity> module, IRoleRepository roleRepository)
 {
     this._relevanceRole  = relevanceRole;
     this._module         = module;
     this._roleRepository = roleRepository;
 }
Ejemplo n.º 12
0
 public ManagerBinder(IRepositoryEF <ManagerEntities> repositoryEF)
 {
     this._repositoryEF = repositoryEF;
 }
Ejemplo n.º 13
0
 public ValuesController(IRepositoryEF <ProductEntities> repository, IUnitOfWork unitOfWork)
 {
     _repository = repository;
     _unitOfWork = unitOfWork;
 }