예제 #1
0
 public UploadSignedContractCommandHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #2
0
 public DeletePropertyCommandHandler(AppDataBaseContext context)
 {
     _context = context;
 }
 public AuthorizationController(AppDataBaseContext db_context, IOptions <AppConfig> options)
 {
     AppOptions = options.Value;
     DbContext  = db_context;
 }
예제 #4
0
 public GetUserRegisterInfoCommandHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #5
0
 public PermissionRepository(AppDataBaseContext context) : base(context)
 {
     _context = context;
 }
예제 #6
0
 public ManagementContractQueryHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #7
0
 public AddManagementContractCommandHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #8
0
 public ProfileController(AppDataBaseContext context, SessionUser session)
 {
     _context = context;
     _user    = session.user;
 }
예제 #9
0
 public GetUserOnlineStatusCommandHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #10
0
 public AddFeePaymentCommandHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #11
0
 public ColorRepository(AppDataBaseContext context) : base(context)
 {
     _context = context;
 }
예제 #12
0
 public GetPieChartDataQueryHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #13
0
 public ServerController(AppDataBaseContext context, ILogger <ServerController> logger, IOptions <AppConfig> options)
 {
     _context = context;
     _logger  = logger;
     conf     = options.Value;
 }
예제 #14
0
 public NotificationsController(AppDataBaseContext context, SessionUser session, ILogger <NotificationsController> logger)
 {
     _context = context;
     _user    = session.user;
     _logger  = logger;
 }
예제 #15
0
 public UserRoleRepository(AppDataBaseContext context) : base(context)
 {
     _context = context;
 }
예제 #16
0
 public GoodsController(AppDataBaseContext context, ILogger <GoodsController> logger, SessionUser session)
 {
     _context = context;
     _logger  = logger;
     _user    = session.user;
 }
예제 #17
0
 public FunctionRepository(AppDataBaseContext context) : base(context)
 {
     _context = context;
 }
예제 #18
0
 public OwnerDetailsQueryHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #19
0
 public DeleteImageFromPropertyCommandHandler(AppDataBaseContext context, IHostingEnvironment hostingEnvironment)
 {
     _context            = context;
     _hostingEnvironment = hostingEnvironment;
 }
예제 #20
0
 public FeePaymentHistoryQueryHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #21
0
 public CheckEmailQueryHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #22
0
 public EnableOnlineAccessCommandHandler(AppDataBaseContext context, IMessagePublisher messagePublisher)
 {
     _context          = context;
     _messagePublisher = messagePublisher;
 }
예제 #23
0
 public ProductCategoryRepository(AppDataBaseContext context) : base(context)
 {
     _context = context;
 }
예제 #24
0
 public UpdatePropertyStatusCommandHandler(AppDataBaseContext context)
 {
     _context = context;
 }
 public SimpleLibrary(AppDataBaseContext ctx)
 {
     _ctx = ctx;
     _ctx.SavedChanges += _ctx_SavedChanges;
 }
예제 #26
0
 public SessionsController(AppDataBaseContext ctx)
 {
     _ctx = ctx;
 }
예제 #27
0
 public SizeRepository(AppDataBaseContext context) : base(context)
 {
     _context = context;
 }
예제 #28
0
 public AllOwnerListQueryHandler(AppDataBaseContext context)
 {
     _context = context;
 }
예제 #29
0
 public UsersListController(AppDataBaseContext ctx)
 {
     _ctx = ctx;
 }
예제 #30
0
 public PropertyListQueryHandler(AppDataBaseContext context)
 {
     _context = context;
 }