private readonly IHostingEnvironment hostingEnvironment;        //Referência para o scope

        public PostController(IPTGramDb context, IHostingEnvironment hostingEnvironment)
        {
            this.db = context;
            this.hostingEnvironment = hostingEnvironment;
        }
Exemple #2
0
 public PostsController(IPTGramDb context)
 {
     _context = context;
 }