예제 #1
0
        public async Task <bool> PostMyResume(Resume resume)
        {
            bool status;

            try
            {
                await _repositoryResume.CreateResumeAsync(resume);

                status = true;
            }
            catch (Exception)
            {
                status = false;
            }

            return(status);
        }