public bool ModificarPerfil(Perfil Perfil) { using (SQLContexto contexto = new SQLContexto()) { PerfilRepo perfilRepo = new PerfilRepo(contexto); return(perfilRepo.Actualizar(Perfil)); } }
public List <Perfil> TraerPerfiles() { using (SQLContexto contexto = new SQLContexto()) { PerfilRepo perfilRepo = new PerfilRepo(contexto); return(perfilRepo.TraerTodo()); } }
public bool EliminarPerfil(string Codigo) { using (SQLContexto contexto = new SQLContexto()) { PerfilRepo perfilRepo = new PerfilRepo(contexto); return(perfilRepo.Eliminar(new Perfil { Codigo = new Guid(Codigo) })); } }
public bool AgregarPerfil(Perfil Perfil) { Perfil.Codigo = Guid.NewGuid(); using (SQLContexto contexto = new SQLContexto()) { PerfilRepo perfilRepo = new PerfilRepo(contexto); return(perfilRepo.Insertar(Perfil)); } }
public Perfil TraerPerfil(string Codigo) { using (SQLContexto contexto = new SQLContexto()) { PerfilRepo perfilRepo = new PerfilRepo(contexto); return(perfilRepo.Traer(new Perfil { Codigo = new Guid(Codigo) })); } }