blob: 1aeefbfe48bb9e6fb04d5f7a8f5d2455771e581b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
using Gestor.Infrastructure.Entities.Generic;
using System;
using System.Runtime.CompilerServices;
namespace Gestor.Infrastructure.Entities.Financeiro
{
public class ControleFinanceiroDb : EntityBase
{
public virtual CentroDb Centro
{
get;
set;
}
public virtual FornecedorDb Fornecedor
{
get;
set;
}
public virtual string Historico
{
get;
set;
}
public virtual int Parcelas
{
get;
set;
}
public virtual PlanosDb Plano
{
get;
set;
}
public ControleFinanceiroDb()
{
}
}
}
|