Esempio n. 1
0
        public IHttpActionResult GetByInstrumentType(int id)
        {
            InstrumentService instrumentServices = CreateInstrumentService();
            var instruments = instrumentServices.GetInstrumentByInstrumentType(id);

            return(Ok(instruments));
        }