コード例 #1
0
        public string GetEmployeeStatus()
        {
            switch (this.Fund)
            {
            case "BJVVV":
                BJDatabaseWrapper dbw   = new BJDatabaseWrapper(this.Fund);
                DataTable         table = dbw.GetEmployeeStatus(this.IDMAIN);
                return((table.Rows.Count == 0) ? "" : table.Rows[0][0].ToString());

            default:
                return("");
            }
        }