The Where extension filters and returns IEnumerable
hence you need to call .ToList() to convert it back
public List FilterCustomersByStatus(List source, string status)
{
return source.Where(c => c.Status == status).ToList();//This will return a list of type customer
}