コード例 #1
0
 public List <Profile> GetAllProfile()
 {
     return(_profileManager.GetAll());
 }
コード例 #2
0
 public async Task <ActionResult <ApiResult <List <Profile> > > > GetAll()
 {
     return(ReturnResponse(() => _profile.GetAll()));
 }
コード例 #3
0
        private void UpdateProfilesInView()
        {
            var profiles = _profileManager.GetAll().Select(profile => profile.Name);

            View.Profiles = profiles;
        }