public async Task <IActionResult> GetFilmsById(int id) { var result = await avengerDomain.GetAllFilmsByIdAsync(id); return(Ok(result)); }
public async Task <IActionResult> AvengerFilm([FromODataUri] int key) { var result = await avengerDomain.GetAllFilmsByIdAsync(key); return(Ok(result)); }