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