public bool Update(ProductoBanco entidad)
 {
     throw new NotImplementedException();
 }
 public bool Insert(ProductoBanco entidad)
 {
     Context.ProductoBanco.Add(entidad);
     return(Context.SaveChanges() != 0);
 }