Пример #1
0
        public int viewCallBackItemsInPages = 20; // Callback items count in CallBackList page

        public AdminController(IUnitOfWork unitOfWork, IWebHostEnvironment hostingEnvironment, IInfoRepository infoRepository,
                               IAppAddressRepository addressRepository, IAppDataRepository appRepository)
        {
            _unitOfWork         = unitOfWork;
            _hostingEnvironment = hostingEnvironment;
            _infoRepository     = infoRepository;
            _addressRepository  = addressRepository;
            _appRepository      = appRepository;
        }
Пример #2
0
 public AppAddressViewComponent(IAppAddressRepository repository)
 {
     _repository = repository;
 }