示例#1
0
        public IHttpActionResult GetByInstrumentTypeAndExpLvl(int Expid, int TypeId)
        {
            InstrumentService instrumentService = CreateInstrumentService();
            var instruments = instrumentService.GetInstrumentByInstrumentTypeAndExpLvl(Expid, TypeId);

            return(Ok(instruments));
        }