예제 #1
0
파일: UserStore.cs 프로젝트: jbinder/dragon
 public Task SetLockoutEndDateAsync(TUser user, DateTimeOffset lockoutEnd)
 {
     return(_userStore.SetLockoutEndDateAsync(Mapper.Map <IdentityUser>(user), lockoutEnd));
 }