ArtistGetAll() public method

public ArtistGetAll ( ) : IEnumerable
return IEnumerable
        public IHttpActionResult GetArtists()
        {
            var c = m.ArtistGetAll();

            // Attention - 6 - The return type is the collection (or object) type...
            // The request-handling framework automatically marshalls
            // the collection type into plain-text JSON
            return(Ok(c));
        }