PlayStation_App.Database.UserAccountDatabase.CreateAccountUser C# (CSharp) 메소드

CreateAccountUser() 공개 메소드

public CreateAccountUser ( AccountUser user ) : Task
user PlayStation_App.Models.Authentication.AccountUser
리턴 Task
        public async Task<int> CreateAccountUser(AccountUser user)
        {
            using (var db = new UserAccountDataSource(Platform, DbLocation))
            {
               return await db.AccountUserRepository.Create(user);
            }
        }