Example #1
0
 public UsersController(IUserViewBuilder userViewBuilder, CheckyContext db, IUuidService pinService, IEmailService emailService, UserManager <Identity> identityManager) : base(db, identityManager)
 {
     this.pinService      = pinService;
     this.emailService    = emailService;
     this.identityManager = identityManager;
     this.userViewBuilder = userViewBuilder;
 }
Example #2
0
 public AuthController(
     IOptions <IdentityOptions> identityOptions, SignInManager <Identity> signInManager, UserManager <Identity> userManager, CheckyContext db) : base()
 {
     this.identityOptions = identityOptions;
     this.signInManager   = signInManager;
     this.userManager     = userManager;
     this.db = db;
 }
 public CheckyRepository(CheckyContext ctx)
 {
     _ctx = ctx;
     _ctx.Configuration.LazyLoadingEnabled = true;
 }
Example #4
0
 public DevicesController(IDeviceViewBuilder deviceViewBuilder, UserManager <Identity> identityManager, IPasswordService passwordService, CheckyContext db) : base(db, identityManager)
 {
     this.identityManager   = identityManager;
     this.passwordService   = passwordService;
     this.deviceViewBuilder = deviceViewBuilder;
 }
 public InventoryItemsController(CheckyContext db, UserManager <Identity> userManager) : base(db, userManager)
 {
 }
Example #6
0
 public OrdersController(CheckyContext db, IPaymentService paymentService, UserManager <Identity> identityService) : base(db, identityService)
 {
     this.paymentService = paymentService;
 }
Example #7
0
 public UuidService(CheckyContext db)
 {
     this.db = db;
 }
Example #8
0
 public BaseController(CheckyContext db, UserManager <Identity> identityService)
 {
     this.db = db;
     this.identityService = identityService;
 }