Epiworx.Data.EntityFramework.Feed.CreateFeed C# (CSharp) Method

CreateFeed() public static method

Create a new Feed object.
public static CreateFeed ( global feedId, global action, global description, global sourceId, global sourceTypeId, global createdBy, global createdDate ) : Feed
feedId global Initial value of the FeedId property.
action global Initial value of the Action property.
description global Initial value of the Description property.
sourceId global Initial value of the SourceId property.
sourceTypeId global Initial value of the SourceTypeId property.
createdBy global Initial value of the CreatedBy property.
createdDate global Initial value of the CreatedDate property.
return Feed
        public static Feed CreateFeed(global::System.Int32 feedId, global::System.String action, global::System.String description, global::System.Int32 sourceId, global::System.Int32 sourceTypeId, global::System.Int32 createdBy, global::System.DateTime createdDate)
        {
            Feed feed = new Feed();
            feed.FeedId = feedId;
            feed.Action = action;
            feed.Description = description;
            feed.SourceId = sourceId;
            feed.SourceTypeId = sourceTypeId;
            feed.CreatedBy = createdBy;
            feed.CreatedDate = createdDate;
            return feed;
        }