How to create a MesageBox listing data in C #? [closed]

1

I want to create a notification, using the messagebox, to list all products registered in the system with a minimum quantity as soon as I run the system.

    
asked by anonymous 03.03.2017 / 08:18

1 answer

1

this is the class:

 class Lista_de_produto
 {
    public string Nome_produto { get; set; } 
    public int qtd  { get; set; } 

   public List<Lista_de_produto> GetAll()
   {
       List<Lista_de_produto> g=new List<Lista_de_produto>();

      //faça aqui o teu select, sem utilizar o where

       return g;
   }

 }

Here it is in form

string Mensagem="";
int qtd_min=5; 
Lista_de_produto tg=new Lista_de_produto();
List<Lista_de_produto> List=tg.GetAll() ;  
List<Lista_de_produto> ver=List.FindAll(X => X.qtd <= qtd_min);

if(ver.Count>0)
{
    for(int a=0;a<=ver.Count;a++)
    {
      Mensagem=Mensagem+ver[a].Nome_produto +"\n";
    }
    MessageBox.Show(Mensagem);
 }
    
03.03.2017 / 12:22