CQRS.Talk.Refactoring1.Queries.Step1.Repository.PeopleController.FindByEmail C# (CSharp) 메소드

FindByEmail() 공개 메소드

public FindByEmail ( String email ) : ActionResult
email String
리턴 ActionResult
        public ActionResult FindByEmail(String email)
        {
            var person = peopleRepository.FindPersonByEmail(email, isCurrentlyEmployed: true);

            return View(person);
        }
    }