public async Task <ResponseModel> ListAsync()
        {
            var applicants = await applicantRepository.ListAsync();

            return(new ResponseModel {
                Success = true, Data = applicants, StatusCode = 200
            });
        }