Skip to content

joshuabharper7/AlbumCollection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Album Collection

Scenario

Our super hip ironic friend needs an easy way to curate soundscapes for the Italian scooter/coffee hybrid co-op startup at which they volunteer (they also fix old polaroid cameras).

They have tasked us with creating an application that can easily keep track of their EXTENSIVE record collection and access music by artists or albums. This collection is in a constant state of flux, so it is essential for the users to be able to update the collection and it's elements.

Requirements

We are going to create an API using ASP.Net Entity Framework that will handle our DB and interactions with it.

  • Create a RESTful API with ASP.Net
  • Endpoints for the following:
    • All CRUD operations for artists
      • Create endpoint
      • Read endpoint
      • Update endpoint
      • Delete endpoint
    • All CRUD operations for albums
      • Create endpoint
      • Read endpoint
      • Update endpoint
      • Delete endpoint
  • A database service layer for retrieving and storing artists, albums, and songss from the database and interacting with the controllers.

Relationships

Our user should be able to:

access albums from the artist that made them. access songs from the album the song is on. User Input Fields Each entity should have fields the user can interact with:

Should have ratings (rating system can be your own design) Should have comments with a way to add them Front-end Next we will create our interactive front-end. It should be an SPA (Single Page Application) that uses JS to build out components that our users can interact with. Use modular JS along with WebPack to create reusable components. This application should allow you to create new artists, albums and songs, edit details about each of the items after they have been created, and delete items.

Entities

  • artist
    • name
    • image
    • albums
    • any other pertinent info. which could include:
      • age
      • record label
      • hometown
  • album
    • title
    • image
    • songs (either as a string to be separated, or see below)
    • record label

Stretch Tasks

Implement another layer to the database, including songs that belong to a given album. Use the following model for a song:

song

  • title
  • link (optional)
  • duration

Implement all CRUD operations for songs

  • Create endpoint
  • Read endpoint
  • Update endpoint
  • Delete endpoint

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •