コード例 #1
0
        public async Task <Education> CreateNewEducation(Education education)
        {
            try
            {
                var res = await _repository.CreateNewEducation(education);

                return(res);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }