public bool NovaVenda(Venda entity)
 {
     if (produtosDAL.CreateSell(entity) != 0)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }