public void insert(double total, string locationName)
    {
        locationControl   = new LocationControl();
        locationClothes   = new LocationClothes();
        locationClothesDB = new LocationClothesDB();
        locationControl.getLocationID(locationName);
        int ID = locationControl.getID(locationName);

        locationClothes.setLocationID(ID);
        locationClothes.setTotal(total);
        locationClothesDB.insert(locationClothes);
    }