Projeto Controller

This commit is contained in:
GuiNerd
2019-09-22 07:51:57 -03:00
parent 7cf858c004
commit 0fbde86dcc
40 changed files with 3153 additions and 306 deletions

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using GerenciaProjetos.Models;
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
namespace GerenciaProjetos.Controllers
{
public class RequisitosController : Controller
{
private GerenciaContext ctx;
public RequisitosController(GerenciaContext ctx)
{
this.ctx = ctx;
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
}
public IActionResult Index()
{
return View();
}
}
}