예제 #1
0
    public static Presentaciones Get(System.Int32 presentacionID)
    {
        DataSet        ds;
        Database       db;
        string         sqlCommand;
        DbCommand      dbCommand;
        Presentaciones instance;


        instance = new Presentaciones();

        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspPresentaciones_SELECT";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, presentacionID);

        // Get results.
        ds = db.ExecuteDataSet(dbCommand);
        // Verification.
        if (ds == null || ds.Tables[0].Rows.Count == 0)
        {
            throw new ApplicationException("Could not get Presentaciones ID:" + presentacionID.ToString() + " from Database.");
        }
        // Return results.
        ds.Tables[0].TableName = TABLE_NAME;

        instance.MapFrom(ds.Tables[0].Rows[0]);
        return(instance);
    }
예제 #2
0
    public static Presentaciones[] Search(System.Int32?presentacionID, System.String presentacion, System.Double?peso)
    {
        DataSet   ds;
        Database  db;
        string    sqlCommand;
        DbCommand dbCommand;


        db         = DatabaseFactory.CreateDatabase();
        sqlCommand = "[dbo].gspPresentaciones_SEARCH";
        dbCommand  = db.GetStoredProcCommand(sqlCommand, presentacionID, presentacion, peso);

        ds = db.ExecuteDataSet(dbCommand);
        ds.Tables[0].TableName = TABLE_NAME;
        return(Presentaciones.MapFrom(ds));
    }
예제 #3
0
    public static Presentaciones[] MapFrom(DataSet ds)
    {
        List <Presentaciones> objects;


        // Initialise Collection.
        objects = new List <Presentaciones>();

        // Validation.
        if (ds == null)
        {
            throw new ApplicationException("Cannot map to dataset null.");
        }
        else if (ds.Tables[TABLE_NAME].Rows.Count == 0)
        {
            return(objects.ToArray());
        }

        if (ds.Tables[TABLE_NAME] == null)
        {
            throw new ApplicationException("Cannot find table [dbo].[Presentaciones] in DataSet.");
        }

        if (ds.Tables[TABLE_NAME].Rows.Count < 1)
        {
            throw new ApplicationException("Table [dbo].[Presentaciones] is empty.");
        }

        // Map DataSet to Instance.
        foreach (DataRow dr in ds.Tables[TABLE_NAME].Rows)
        {
            Presentaciones instance = new Presentaciones();
            instance.MapFrom(dr);
            objects.Add(instance);
        }

        // Return collection.
        return(objects.ToArray());
    }