Exemplo n.º 1
0
        //этот метод закрыть с потрохами
        public bool IsIssuedToReader()
        {
            switch (this.Fund)
            {
            case "BJVVV":
                BJDatabaseWrapper dbw   = new BJDatabaseWrapper(this.Fund);
                DataTable         table = dbw.IsIssuedToReader(this.IdData);
                return((table.Rows.Count == 0) ? false : true);

            default:
                return(false);
            }
        }