Doubt with public class ListDBProductDTO: ListtbProductDTO what is it for?

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

    
asked by anonymous 09.02.2016 / 18:40

1 answer

2

You do not really

09.02.2016 / 20:02