예제 #1
0
        public int DeleteSession(long?IdSession)
        {
            int result          = 0;
            DataBaseFunction db = new DataBaseFunction();

            db.agregarParametro("IdSession", SqlDbType.BigInt, IdSession);
            db.consultaSinRetorno("Softv_SessionDelete");
            return(result);
        }