Exemple #1
0
 public ModificacionGradoForm(Form callerForm)
 {
     InitializeComponent();
     this.callerForm      = callerForm;
     this.gradoRepository = new GradoDePublicacionRepository();
     this.InitializeComboBox();
 }
Exemple #2
0
 private void InitializeRepositories()
 {
     this.publicacionRepository         = new PublicacionRepository();
     this.ubicacionRepository           = new UbicacionRepository();
     this.gradoDePublicacionRepository  = new GradoDePublicacionRepository();
     this.estadoDePublicacionRepository = new EstadoDePublicacionRepository();
     this.rubroRepository = new RubroRepository();
 }
 public AltaGradoForm(Form callerForm)
 {
     InitializeComponent();
     this.callerForm      = callerForm;
     this.gradoRepository = new GradoDePublicacionRepository();
 }