0
I have this DTO class:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class tbProdutoDTO
{
public tbProdutoDTO()
{
this.dsDescricao = "";
this.dsFornecedor = "";
}
public tbProdutoDTO(int idproduto, String dsdescricao, String dsfornecedor, float vlvalor, int qtestoque)
{
this.idProduto = idproduto;
this.dsDescricao = dsdescricao;
this.dsFornecedor = dsfornecedor;
this.vlValor = vlvalor;
this.qtEstoque = qtestoque;
}
public int idProduto { get; set; }
public String dsDescricao { get; set; }
public String dsFornecedor { get; set; }
public float vlValor { get; set; }
public int qtEstoque { get; set; }
}
Now why do I need this class? Follow class:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
public class ListatbProdutoDTO : List<tbProdutoDTO>
{
public ListatbProdutoDTO()
{
}
}
I can’t understand what that list class is for.
What do you want to do?
– user28595
I did not understand this Eneric there as list. Make a sale project.... This class I took from a friend...
– Aline