Beispiel #1
0
 public void Agregar(CosechasDto dto)
 {
     this.SetearDBContext(this.service);
     this.service.Agregar(dto);
     this.DisposeDBContext(this.service.DBContext);
 }
Beispiel #2
0
 public void Modificar(CosechasDto dto)
 {
     this.SetearDBContext(this.service);
     this.service.Modificar(dto);
     this.DisposeDBContext(this.service.DBContext);
 }