public DireccionController(AngelDbContext Db)
 {
     this.Db     = Db;
     ClDireccion = new DireccionCore(this.Db);
     ClEstado    = new EstadoCore(this.Db);
     ClMunicipio = new MunicipioCore(this.Db);
     CLUsuario   = new UsuarioCore(this.Db);
 }
 public NegocioController(AngelDbContext Db)
 {
     this.Db     = Db;
     ClServicio  = new ServicioCore(this.Db);
     ClNegocio   = new NegocioCore(this.Db);
     ClUsuario   = new UsuarioCore(this.Db);
     CLMunicipio = new MunicipioCore(this.Db);
     CLImagen    = new ImagenCore(this.Db);
     ClEstado    = new EstadoCore(this.Db);
 }
 public MunicipioController(AngelDbContext Db)
 {
     this.Db     = Db;
     CLMunicipio = new MunicipioCore(this.Db);
     ClEstado    = new EstadoCore(this.Db);
 }