mirror of
https://github.com/guilhermewerner/gerencia-projetos
synced 2025-06-15 22:45:09 +00:00
28 lines
627 B
C#
28 lines
627 B
C#
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 BugsController : Controller
|
|
{
|
|
private GerenciaContext ctx;
|
|
|
|
public BugsController(GerenciaContext ctx)
|
|
{
|
|
this.ctx = ctx;
|
|
|
|
Requisito dev = ctx.Requisitos.Find(1);
|
|
}
|
|
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |