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

            response.synthesizer = magmaDbContext.Find <Synthesizer>(id);

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