public ProjectController(BiGitContext context, IHostingEnvironment env) { _env = env; session = context; }
public UserController(BiGitContext context) { session = context; }
public GitAuthenticationMiddleware(RequestDelegate next, BiGitContext context) { this.next = next; this.session = context; }
public HomeController(BiGitContext context) { db = context; }
public ValuesController(BiGitContext context) { this.context = context; }