示例#1
0
        public bool IsIssuedOrOrderedEmployee()
        {
            switch (this.Fund)
            {
            case "BJVVV":
                BJDatabaseWrapper dbw   = new BJDatabaseWrapper(this.Fund);
                DataTable         table = dbw.IsIssuedOrOrderedEmployee(this.IDMAIN, this.IdData);
                return((table.Rows.Count == 0) ? false : true);

            default:
                return(false);
            }
        }