예제 #1
0
        public async Task <string> UpdateEFCoreASync(string FirstName, int id)
        {
            UserTestUpdate userTestUpdate = new UserTestUpdate(FirstName, id);
            await eFCoreASyncRepository.UpdateAsync(userTestUpdate);

            return("test");
        }
예제 #2
0
        public async Task <string> UpdateEFCoreASync(string FirstName, int id)
        {
            await eFCoreASyncRepository.UpdateAsync(FirstName, id);

            return("test");
        }