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 ImagenController(AngelDbContext Db)
 {
     this.Db  = Db;
     clImagen = new ImagenCore(this.Db);
 }