Esempio n. 1
0
 public CakeMarkLogic(ICakeMarkDbContext cakeMarkDbContext, IHttpContextAccessor httpContext, IOfficeLogic officeLogic)
     : base(cakeMarkDbContext, httpContext)
 {
     this.cakeMarkDbContext = cakeMarkDbContext;
     this.officeLogic       = officeLogic;
 }
Esempio n. 2
0
 public AccountLogic(ICakeMarkDbContext cakeMarkDbContext, IHttpContextAccessor httpContext)
     : base(cakeMarkDbContext, httpContext)
 {
     this.cakeMarkDbContext = cakeMarkDbContext;
 }
 public IsAdminHandler(ICakeMarkDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public OfficeLogic(ICakeMarkDbContext cakeMarkDbContext, IHttpContextAccessor httpContext, IAccountLogic accountLogic)
     : base(cakeMarkDbContext, httpContext)
 {
     this.cakeMarkDbContext = cakeMarkDbContext;
     this.accountLogic      = accountLogic;
 }
Esempio n. 5
0
 public BaseLogic(ICakeMarkDbContext cakeMarkDbContext, IHttpContextAccessor httpContext)
 {
     this.cakeMarkDbContext = cakeMarkDbContext;
     this.httpContext       = httpContext;
 }