コード例 #1
0
        public IHttpActionResult GetByExpLvl(int id)
        {
            InstrumentService instrumentService = CreateInstrumentService();
            var instruments = instrumentService.GetInstrumentByExpLvl(id);

            return(Ok(instruments));
        }