Esempio n. 1
0
 public static void Map(TodoListAggregate entity, TodoListDto dto)
 {
     dto.Id     = entity.Key;
     dto.ListId = entity.ListId;
     dto.Name   = entity.Name;
 }
        private TodoListAggregate given_new_todo_list_aggregate()
        {
            var aggregate = new TodoListAggregate();

            return(aggregate);
        }