public RegisterController(IMapper mapper, HadiaContext context)
        {
            _mapper = mapper;
            _db     = context;

            _authServive = new AuthService(context);
        }
예제 #2
0
 public LoginController(
     HadiaContext context,
     IConfiguration config,
     IAuthService authServive)
 {
     _db          = context;
     _config      = config;
     _authServive = authServive;
 }
예제 #3
0
 public GroupController(
     HadiaContext db,
     IHostingEnvironment hostingEnvironment,
     IMapper mapper)
 {
     _db = db;
     _hostingEnvironment = hostingEnvironment;
     _mapper             = mapper;
 }
예제 #4
0
 public CommentController(
     HadiaContext db,
     IHostingEnvironment hostingEnvironment,
     IMapper mapper,
     INotification notification)
 {
     _db = db;
     _hostingEnvironment = hostingEnvironment;
     _mapper             = mapper;
 }
예제 #5
0
 public TimelineController(
     HadiaContext db,
     IMapper mapper,
     IHostingEnvironment hostingEnvironment,
     INotification notification)
 {
     _db                 = db;
     _mapper             = mapper;
     _hostingEnvironment = hostingEnvironment;
     _notification       = notification;
 }
예제 #6
0
 public StateMasterController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
예제 #7
0
 public SearchController(HadiaContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #8
0
 public ProfileController(HadiaContext db, IMapper mapper, IHostingEnvironment hostingEnvironment)
 {
     _db                 = db;
     _mapper             = mapper;
     _hostingEnvironment = hostingEnvironment;
 }
예제 #9
0
 public ResetController(HadiaContext db, IHostingEnvironment hostingEnvironment)
 {
     _db = db;
     _hostingEnvironment = hostingEnvironment;
 }
예제 #10
0
 public ActionFilter(HadiaContext db)
 {
     _db = db;
 }
예제 #11
0
 public AuthService(HadiaContext context)
 {
     _db = context;
 }
 public ChangePasswordController(HadiaContext db, IAuthService auth)
 {
     _db   = db;
     _auth = auth;
 }
예제 #13
0
 public PostController(HadiaContext db)
 {
     _db = db;
 }
예제 #14
0
 public ProjectController(IMapper mapper, HadiaContext context)
 {
     _mapper = mapper;
     _db     = context;
 }
예제 #15
0
 public JobCategoryController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
 public UniversityMasterController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
 public UgCollegeController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
예제 #18
0
 public MemberListController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
예제 #19
0
 public ChapterController(HadiaContext context, IMapper mapper, IHostingEnvironment hostingEnvironment)
 {
     _db                 = context;
     _mapper             = mapper;
     _hostingEnvironment = hostingEnvironment;
 }
 public QualificationMasterController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
예제 #21
0
 public BatchController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
예제 #22
0
 public Notification(HadiaContext db)
 {
     _db = db;
 }
예제 #23
0
 public BatchController(HadiaContext db)
 {
     _db = db;
 }
예제 #24
0
 public DataFetcher(HadiaContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #25
0
 public static IQueryable <Mem_Master> Verified(this HadiaContext db, Expression <Func <Mem_Master, bool> > expression)
 {
     return(db.Mem_Masters.Where(x => x.IsVarified).Where(expression));
 }
예제 #26
0
 public CountryController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }
예제 #27
0
 public EducationQualificationController(IMapper mapper, HadiaContext context)
 {
     _mapper = mapper;
     _db     = context;
 }
예제 #28
0
 public FeedController(HadiaContext db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }
예제 #29
0
 public ResetPassword(HadiaContext db)
 {
     _db = db;
 }
예제 #30
0
 public ReportsController(HadiaContext context, IMapper mapper)
 {
     _db     = context;
     _mapper = mapper;
 }