コード例 #1
0
        public Int32 Ingreso(Sesiones data)
        {
            Int32 Id_Session = 0;

            try
            {
                GestorBase BD = new GestorBase();
                Id_Session = BD.Ingresar(data);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return(Id_Session);
        }