Ejemplo n.º 1
0
		public static ContactInfoBoxViewModel Map(ContactInfoDto ci)
		{
			var vm = new ContactInfoBoxViewModel();
			vm.MapFrom(ci);

			return vm;
		}
Ejemplo n.º 2
0
		private void ExecuteShowDetailsCommand(ContactInfoBoxViewModel model)
		{
			ShowViewModel<ContactInfoBoxViewModel>(new {id = model.Id, title = model.Title});
		}