Ejemplo n.º 1
0
        public async Task <TestModel> Get(int id, int test)
        {
            TestModel testModel = new TestModel();

            try
            {
                testModel = await _TestService.GetTestServicesByIdAsync(id);
            }
            catch (Exception exc)
            {
            }
            return(testModel);
        }