Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GroupViewModel"/> class.
 /// </summary>
 /// <param name="group">The group.</param>
 public GroupViewModel(Group group) : this()
 {
     this.Id = (int)group.GroupId;
     this.Name = group.Name;
 }
Exemplo n.º 2
0
 public EditGroupViewModel(Group group) : this()
 {
     this.Group = group;
 }