blob: abbe3b132ec071751d302c2da961bed336f1f45d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
using Gestor.Application.ViewModels.Ferramentas;
using Gestor.Application.ViewModels.Generic;
using Gestor.Model.Domain.Seguros;
using System;
using System.Runtime.CompilerServices;
using System.Windows;
namespace Gestor.Application.ViewModels
{
internal class MenuFerramentasViewModel : BaseSegurosViewModel
{
private Usuario _selectedUsuario = new Usuario();
private Visibility _visibilityUsuario;
private Visibility _visibilityEmpresa;
private object _content;
public object Content
{
get
{
return this._content;
}
set
{
this._content = value;
base.OnPropertyChanged("Content");
}
}
public Usuario SelectedUsuario
{
get
{
return this._selectedUsuario;
}
set
{
this._selectedUsuario = value;
base.OnPropertyChanged("SelectedUsuario");
}
}
public static Usuario UsuarioSelecionado
{
get;
set;
}
public Gestor.Application.ViewModels.Ferramentas.UsuarioViewModel UsuarioViewModel
{
get;
set;
}
public Visibility VisibilityEmpresa
{
get
{
return this._visibilityEmpresa;
}
set
{
this._visibilityEmpresa = value;
base.OnPropertyChanged("VisibilityEmpresa");
}
}
public Visibility VisibilityUsuario
{
get
{
return this._visibilityUsuario;
}
set
{
this._visibilityUsuario = value;
base.OnPropertyChanged("VisibilityUsuario");
}
}
public MenuFerramentasViewModel()
{
}
}
}
|