예제 #1
0
        public Response GetAudioEffectById(int id)
        {
            response = responseFactory.CreateAudioEffectResponse();

            response.audioEffect = magmaDbContext.Find <AudioEffect>(id);

            return(responseFactory.UpdateResponse(response, "Success: audio effect found", ResponseStatus.OK));
        }