public Task <IdentityResult> UpdateAsync(FantasyCriticRole role, CancellationToken cancellationToken)
 {
     throw new NotImplementedException();
 }
 public Task SetRoleNameAsync(FantasyCriticRole role, string roleName, CancellationToken cancellationToken)
 {
     throw new NotImplementedException();
 }
    public FantasyCriticRole ToDomain()
    {
        FantasyCriticRole domain = new FantasyCriticRole(RoleID.ToGuid(), Name, NormalizedName);

        return(domain);
    }
 public Task <string> GetRoleIdAsync(FantasyCriticRole role, CancellationToken cancellationToken)
 {
     throw new NotImplementedException();
 }
 public FantasyCriticRoleEntity(FantasyCriticRole role)
 {
     RoleID         = role.Id.ToInt();
     Name           = role.Name;
     NormalizedName = role.NormalizedName;
 }