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

            Consensus.Common.IAttachmentModel model = provider.Common.Attachment.FetchById(id);
            return(model == null ? null : new Consensus.Common.Attachment(model));
        }
Exemplo n.º 2
0
        /// <summary>
        ///     Creates a new <see cref="!:AttachmentModel" /> instance.
        /// </summary>
        /// <returns>
        ///     A newly instantiated <see cref="!:AttachmentModel" /> instance.
        /// </returns>
        public static Consensus.Common.Attachment Create(ConsensusSite site)
        {
            IBusinessProvider provider = site.GetService <IBusinessProvider>();

            Consensus.Common.IAttachmentModel model = provider.Common.Attachment.Create();
            return(model == null ? null : new Consensus.Common.Attachment(model));
        }