コード例 #1
0
        public IActionResult GetAll()
        {
            var data = _applicantRepository.GetAllApplicant();

            return(Ok(data));
        }
コード例 #2
0
 public List <Applicant> GetAllApplicant()
 {
     return(_applicantRepository.GetAllApplicant());
 }