Exemple #1
0
        /// <summary>
        ///     Retrieves a specific <see cref="!:ProjectModel" /> instance.
        /// </summary>
        /// <param name="id">
        ///     The unique value which distinctly identifies the <see cref="!:ProjectModel" /> instance to be returned.
        /// </param>
        /// <returns>
        ///     The <see cref="!:ProjectModel" /> instance that matches the specified <paramref name="id" />; or null, if no matching instance can be found.
        /// </returns>
        public static Consensus.Logistics.Project FetchById(ConsensusSite site, System.String id)
        {
            IBusinessProvider provider = site.GetService <IBusinessProvider>();

            Consensus.Logistics.IProjectModel model = provider.Logistics.Project.FetchById(id);
            return(model == null ? null : new Consensus.Logistics.Project(model));
        }
Exemple #2
0
        /// <summary>
        ///     Creates a new <see cref="!:ProjectModel" /> instance.
        /// </summary>
        /// <returns>
        ///     A newly instantiated <see cref="!:ProjectModel" /> instance.
        /// </returns>
        public static Consensus.Logistics.Project Create(ConsensusSite site)
        {
            IBusinessProvider provider = site.GetService <IBusinessProvider>();

            Consensus.Logistics.IProjectModel model = provider.Logistics.Project.Create();
            return(model == null ? null : new Consensus.Logistics.Project(model));
        }