public LostItemClaimController(UserManager <ApplicationUser> userManager,
                                IEmailNotifier emailNotifier, IUtility utility, ILostItemRepository lostItemRepository, ILostItemClaimRepository claimRepository)
 {
     this.userManager        = userManager;
     this.emailNotifier      = emailNotifier;
     this.utility            = utility;
     this.lostItemRepository = lostItemRepository;
     this.claimRepository    = claimRepository;
 }
Esempio n. 2
0
 public HomeController(IFoundItemRepository repository, ILocalGovernmentRepository localGovernmentRepository,
                       UserManager <ApplicationUser> userManager, ILostItemRepository lostItemRepository, IStateRepository stateRepository)
 {
     this.repository = repository;
     this.localGovernmentRepository = localGovernmentRepository;
     this.userManager        = userManager;
     this.lostItemRepository = lostItemRepository;
     this.stateRepository    = stateRepository;
 }
Esempio n. 3
0
 public LostItemController(IStateRepository stateRepository,
                           ILocalGovernmentRepository lgaRepository,
                           IEmailNotifier emailNotifier, IUtility utility,
                           ILostItemRepository repository, ILostItemClaimRepository claimRepository, UserManager <ApplicationUser> userManager)
 {
     this.stateRepository = stateRepository;
     this.lgaRepository   = lgaRepository;
     this.emailNotifier   = emailNotifier;
     this.utility         = utility;
     this.repository      = repository;
     this.claimRepository = claimRepository;
     // this.context = context;
     this.userManager = userManager;
 }
Esempio n. 4
0
 public DashboardController(ILostItemRepository lostrepository,
                            IFoundItemRepository foundrepository,
                            IFoundItemClaimRepository claimRepository,
                            ILostItemClaimRepository lostItemClaimRepo,
                            UserManager <ApplicationUser> userManager,
                            IMeetingRepository meetingRepository)
 {
     this.lostrepository    = lostrepository;
     this.foundrepository   = foundrepository;
     this.claimRepository   = claimRepository;
     this.lostItemClaimRepo = lostItemClaimRepo;
     this.userManager       = userManager;
     this.meetingRepository = meetingRepository;
 }