Exemplo n.º 1
0
        public OutputViewModel PrepareOrgModel(
            Org org)
        {
            if (org == null)
            {
                throw new ArgumentNullException("org");
            }

            var next = org.ExtractNextLink();

            var model = OutputViewModel.CreateOrgOutputViewModel(org, next, "{0}, {1}");

            return(model);
        }