Ejemplo n.º 1
0
        public SysUserPrinterCollection FetchByQuery(Query qry)
        {
            SysUserPrinterCollection coll = new SysUserPrinterCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public SysUserPrinterCollection FetchAll()
        {
            SysUserPrinterCollection coll = new SysUserPrinterCollection();
            Query qry = new Query(SysUserPrinter.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public SysUserPrinterCollection FetchByID(object SysUserName)
        {
            SysUserPrinterCollection coll = new SysUserPrinterCollection().Where("Sys_UserName", SysUserName).Load();

            return(coll);
        }