public LostFoundController(ILostAndFoundType lostAndFoundType, ILostAndFoundService lostAndFoundService, UserManager <ApplicationUser> userManager, IOtherDocumentService otherDocumentService, IAddressInformationService addressInformationService)
 {
     this.lostAndFoundType          = lostAndFoundType;
     this.lostAndFoundService       = lostAndFoundService;
     this.otherDocumentService      = otherDocumentService;
     this.addressInformationService = addressInformationService;
     _userManager = userManager;
 }
Beispiel #2
0
 public MasterInformationController(ILostAndFoundType lostAndFoundType, IHostingEnvironment hostingEnvironment)
 {
     this.lostAndFoundType = lostAndFoundType;
     _hostingEnvironment   = hostingEnvironment;
     _lang  = new LangGenerate <DocumentTypeLn>(_hostingEnvironment.ContentRootPath);
     _gLang = new LangGenerate <GDTypeLn>(_hostingEnvironment.ContentRootPath);
     _aLang = new LangGenerate <AnimalLn>(_hostingEnvironment.ContentRootPath);
     _cLang = new LangGenerate <ColorLn>(_hostingEnvironment.ContentRootPath);
     _nLang = new LangGenerate <NationalIdentityTypeLn>(_hostingEnvironment.ContentRootPath);
     _pLang = new LangGenerate <ProductTypeLn>(_hostingEnvironment.ContentRootPath);
     _oLang = new LangGenerate <OccupationLn>(_hostingEnvironment.ContentRootPath);
 }
Beispiel #3
0
 public HomeController(IPageAssignService pageAssignService, INavbarService navbarService, ILostAndFoundType lostAndFoundType,
                       LAFDbContext db, IModuleAssignService moduleAssignService, ILostAndFoundService lostAndFoundService,
                       UserManager <ApplicationUser> userManager, IHostingEnvironment _hostingEnvironment, IConverter converter)
 {
     this.pageAssignService   = pageAssignService;
     this.navbarService       = navbarService;
     this.moduleAssignService = moduleAssignService;
     this.lostAndFoundType    = lostAndFoundType;
     this.lostAndFoundService = lostAndFoundService;
     _userManager             = userManager;
     _db = db;
     this._hostingEnvironment = _hostingEnvironment;
     _lang    = new LangGenerate <DashboardLn>(_hostingEnvironment.ContentRootPath);
     _sLang   = new LangGenerate <SearchLn>(_hostingEnvironment.ContentRootPath);
     myPDF    = new MyPDF(_hostingEnvironment, converter);
     rootPath = _hostingEnvironment.ContentRootPath;
 }
 public VehicleMasterController(ILostAndFoundType lostAndFoundType)
 {
     this.lostAndFoundType = lostAndFoundType;
 }
 public DocumentMasterController(ILostAndFoundType lostAndFoundType, IAddressService addressService)
 {
     this.lostAndFoundType = lostAndFoundType;
     this.addressService   = addressService;
 }
 public ExtendMasterController(ILostAndFoundType lostAndFoundType, IExtendedMasterDataService extendedMasterDataService)
 {
     //this.extendedMasterDataService = extendedMasterDataService;
     this.lostAndFoundType          = lostAndFoundType;
     this.extendedMasterDataService = extendedMasterDataService;
 }
 public PublicUserController(IHostingEnvironment hostingEnvironment, ILostAndFoundType lostAndFoundType)
 {
     _langRegister         = new LangGenerate <RegisterLn>(hostingEnvironment.ContentRootPath);
     this.lostAndFoundType = lostAndFoundType;
 }
Beispiel #8
0
 public AddressMasterController(IAddressService addressService, ILostAndFoundType lostAndFoundType)
 {
     this.addressService   = addressService;
     this.lostAndFoundType = lostAndFoundType;
 }
Beispiel #9
0
 public VehicleInformationController(IHostingEnvironment _hostingEnvironment, ILostAndFoundType lostAndFoundType)
 {
     this.lostAndFoundType    = lostAndFoundType;
     this._hostingEnvironment = _hostingEnvironment;
     _lang = new LangGenerate <VehicleInformationLn>(_hostingEnvironment.ContentRootPath);
 }