public InsTipoTratamientoCollection FetchByQuery(Query qry)
        {
            InsTipoTratamientoCollection coll = new InsTipoTratamientoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public InsTipoTratamientoCollection FetchAll()
        {
            InsTipoTratamientoCollection coll = new InsTipoTratamientoCollection();
            Query qry = new Query(InsTipoTratamiento.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public InsTipoTratamientoCollection FetchByID(object IdTipoTratamiento)
        {
            InsTipoTratamientoCollection coll = new InsTipoTratamientoCollection().Where("idTipoTratamiento", IdTipoTratamiento).Load();

            return(coll);
        }