예제 #1
0
파일: TestService.cs 프로젝트: a-kelen/Akel
        public async Task <Test> Create(Test test)
        {
            await _context.Tests.Create(test);

            await _context.Save();

            return(test);
        }
예제 #2
0
 public async Task Save()
 {
     await _context.Save();
 }