public IHttpActionResult Delete(int id)
        {
            int val = TrackDB.DeleteTrack(id);

            if (val > 0)
            {
                return(Ok($"Track with id {id} Successfully deleted!"));
            }
            else
            {
                return(Content(HttpStatusCode.NotFound, $"Track with id {id}  was not found to delete!!!"));
            }
        }