Exemplo n.º 1
0
        public async Task <IActionResult> Get(string filter, string value)
        {
            var contacts = await _contactStore.GetAllFilteredByAsync <Contact>(filter, value);

            return(Ok(_mapper.Map <IEnumerable <ContactModel> >(contacts)));
        }