コード例 #1
0
ファイル: PerfilViewModel.cs プロジェクト: tbrito/salus
        public static PerfilViewModel Criar(Perfil perfil)
        {
            var novoPerfil = new PerfilViewModel();

            try
            {
                novoPerfil.Ativo = perfil.Ativo == null ? false : perfil.Ativo;
                novoPerfil.Id = perfil.Id;
                novoPerfil.Nome = string.IsNullOrEmpty(perfil.Nome) ? "sem nome" : perfil.Nome;
            }
            catch (Exception exception)
            {
                return novoPerfil;
            }

            return novoPerfil;
        }
コード例 #2
0
        public static PerfilViewModel Criar(Perfil perfil)
        {
            var novoPerfil = new PerfilViewModel();

            try
            {
                novoPerfil.Ativo = perfil.Ativo == null ? false : perfil.Ativo;
                novoPerfil.Id    = perfil.Id;
                novoPerfil.Nome  = string.IsNullOrEmpty(perfil.Nome) ? "sem nome" : perfil.Nome;
            }
            catch (Exception exception)
            {
                return(novoPerfil);
            }

            return(novoPerfil);
        }