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 not understand what this class list is for.