]> git.llucax.com Git - mecon/intranet.git/blob - sistema/local_lib/Servicios/Bandas/Dependencia.php
Agregué una clase Buscador que sirve para hacer todas las búsquedas de bandas
[mecon/intranet.git] / sistema / local_lib / Servicios / Bandas / Dependencia.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // |                      Ministerio de Economía                        |
5 // |                             Intranet                              |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet.                                    |
8 // |                                                                    |
9 // | Intranet is free software; you can redistribute it and/or modify  |
10 // | it under the terms of the GNU General Public License as published  |
11 // | by the Free Software Foundation; either version 2 of the License,  |
12 // | or (at your option) any later version.                             |
13 // |                                                                    |
14 // | Intranet is distributed in the hope that it will be useful, but   |
15 // | WITHOUT ANY WARRANTY; without even the implied warranty of         |
16 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   |
17 // | General Public License for more details.                           |
18 // |                                                                    |
19 // | You should have received a copy of the GNU General Public License  |
20 // | along with Hooks; if not, write to the Free Software Foundation,   |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA      |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Aug 14 16:03:23 2003                                 
24 // | Autor:  Matias Sklar <msklar@mecon.gov.ar>
25 // +--------------------------------------------------------------------+
26 //
27 // $Id$
28 //
29
30
31
32 // +X2C includes
33 require_once 'MECON/Dependencia.php';
34 // ~X2C
35
36 // +X2C Class 200 :Servicios_Bandas_Dependencia
37 /**
38  * Clase que representa una dependencia con bandas horarias
39  *
40  * @access public
41  */
42 class Servicios_Bandas_Dependencia extends MECON_Dependencia {
43     // ~X2C
44
45     // +X2C Operation 202
46     /**
47      * Devuelve todos los agentes de la dependencia
48      *
49      * @param  int $codep 
50      * @param  Tipo_Agente $Tipo_agente 
51      *
52      * @return void
53      * @access public
54      */
55     function getAgentes($codep, $Tipo_agente) // ~X2C
56     {
57         trigger_error('Not implemented!', E_USER_WARNING);
58     }
59     // -X2C
60
61     // +X2C Operation 203
62     /**
63      * Devuelve el promedio horario mensual de la dependencia en un mes en particular
64      *
65      * @param  Tipo_Agente $Tipo_agente 
66      *
67      * @return void
68      * @access public
69      */
70     function getPromedio($Tipo_agente = todos) // ~X2C
71     {
72         trigger_error('Not implemented!', E_USER_WARNING);
73     }
74     // -X2C
75
76     // +X2C Operation 209
77     /**
78      * Devuelve la cantidad de ausentes sin aviso de la dependencia en un mes.
79      *
80      * @param  Tipo_Agente $Tipo_agente 
81      *
82      * @return void
83      * @access public
84      */
85     function getNASA($Tipo_agente = todos) // ~X2C
86     {
87         trigger_error('Not implemented!', E_USER_WARNING);
88     }
89     // -X2C
90
91     // +X2C Operation 220
92     /**
93      * @param  date $fecha La fecha para determinar el mes a mostrar
94      *
95      * @return void
96      * @access public
97      */
98     function Servicios_Bandas_Dependencia($fecha = null) // ~X2C
99     {
100         trigger_error('Not implemented!', E_USER_WARNING);
101     }
102     // -X2C
103
104 } // -X2C Class :Servicios_Bandas_Dependencia
105 ?>