Example #1
0
        public IHttpActionResult GetByCategoryType(int id)
        {
            InstrumentService instrumentService = CreateInstrumentService();
            var instruments = instrumentService.GetInstrumentByCategoryType(id);

            return(Ok(instruments));
        }