Exemple #1
0
 public LocadorRepo(CondominioContext context) : base(context)
 {
 }
Exemple #2
0
 public GastosRepo(CondominioContext context) : base(context)
 {
 }
Exemple #3
0
 public MaterialRepo(CondominioContext context) : base(context)
 {
 }
 public ImovelController(CondominioContext context)
 {
     _context = context;
 }
Exemple #5
0
 public BaseRepository(CondominioContext context)
 {
     this.context = context;
     DbSet        = context.Set <T>();
 }
Exemple #6
0
 public ContratoRepo(CondominioContext context) : base(context)
 {
 }
 public EnderecoRepo(CondominioContext context) : base(context)
 {
 }
Exemple #8
0
 public LocatarioRepo(CondominioContext context) : base(context)
 {
 }
 public FornecedorRepo(CondominioContext context) : base(context)
 {
 }
Exemple #10
0
 public ClienteRepo(CondominioContext context) : base(context)
 {
 }
 public ControleInOutRepo(CondominioContext context) : base(context)
 {
 }