protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         IsLoggedIn();
         IsPersonalAuxiliar();
         _PlantacionService = new PlantacionService();
     }
 }
Exemplo n.º 2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         IsLoggedIn();
         _PlantacionService = new PlantacionService();
         _FrutoService      = new FrutoService();
         _MedicionService   = new MedicionService();
         _SensorService     = new SensorService();
         BindPlantaciones();
         BindFrutos();
     }
 }