public GalleryController(IGraphSDKHelper graph, ApplicationDbContext db, IWebHostEnvironment env, IHttpContextAccessor http)
 {
     _Graph = graph;
     _db    = db;
     _env   = env;
     _http  = http;
 }
 public Gallery(ApplicationDbContext db, IHttpContextAccessor http, IGraphSDKHelper graph)
 {
     _db    = db;
     _http  = http;
     _Graph = graph;
 }
 public HomeController(IConfiguration configuration, IHostingEnvironment hostingEnvironment, IGraphSDKHelper graphSdkHelper)
 {
     _configuration  = configuration;
     _env            = hostingEnvironment;
     _graphSdkHelper = graphSdkHelper;
 }
Beispiel #4
0
 public PhotoController(IGraphSDKHelper graph, ApplicationDbContext db)
 {
     _Graph = graph;
     _db    = db;
 }