Esempio n. 1
0
 public JsonViewApiController(AssharedentryRepository entryRepository, AssharedinquiryRepository inquiryRepository, IJsonViewService jsonViewService)
 {
     this._entryRepository   = entryRepository;
     this._inquiryRepository = inquiryRepository;
     this._jsonViewService   = jsonViewService;
     this._currentBasePath   = HttpContext.Current.Server.MapPath("~" + BasePath);
 }
Esempio n. 2
0
        public JsonViewService(AssharedinquiryRepository assharedinquiryRepository, AssharedentryRepository assharedentryRepository, PvUserRepository pvUserRepository, SastaRepository sastaRepository)
        {
            this._assharedinquiryRepository = assharedinquiryRepository;
            this._assharedentryRepository   = assharedentryRepository;
            this._pvUserRepository          = pvUserRepository;
            this._sastaRepository           = sastaRepository;
            string myhost;

            this._tokenObject = ApplicationCookieUtilities.Principal(HttpContext.Current.User, out myhost);
        }
Esempio n. 3
0
 public AssharedentryApiController(AssharedentryRepository repository)
 {
     this.repository = repository;
     this.OnCreated();
 }
Esempio n. 4
0
 public MegaMenuService(AssharedentryRepository assharedentryRepository)
 {
     this.assharedentryRepository = assharedentryRepository;
 }