Advertisement
Kouuds

Untitled

Sep 11th, 2017
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.29 KB | None | 0 0
  1.     class Modelo
  2.     {
  3.        
  4.  
  5.         private int nCodigo;
  6.         private string nd_Compra;
  7.         private string nd_Alvo;
  8.         private string nFornecedor;
  9.         private decimal nValor;
  10.         private string nTipo;
  11.         private string nPagamento;
  12.         private string nd_Pagamento;
  13.        
  14.  
  15.         public int Codigo
  16.         {
  17.             get { return nCodigo; }
  18.             set { nCodigo = value; }
  19.         }
  20.         public string Data_Compra
  21.         {
  22.             get { return nd_Compra; }
  23.             set { nd_Compra = value; }
  24.         }
  25.         public string Data_Alvo
  26.         {
  27.             get { return nd_Alvo; }
  28.             set { nd_Alvo = value; }
  29.         }
  30.         public string Fornecedor
  31.         {
  32.             get { return nFornecedor; }
  33.             set { nFornecedor = value; }
  34.         }
  35.         public decimal Valor { get; set; }
  36.        
  37.         public string Tipo
  38.         {
  39.             get { return nTipo; }
  40.             set { nTipo = value; }
  41.         }
  42.         public string Pagamento
  43.         {
  44.             get { return nPagamento; }
  45.             set { nPagamento = value; }
  46.         }
  47.         public string Data_Pagamento
  48.         {
  49.             get { return nd_Pagamento; }
  50.             set { nd_Pagamento = value; }
  51.         }
  52.  
  53.     }
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement