Epiworx.Data.EntityFramework.FeedSourceMember.CreateFeedSourceMember C# (CSharp) Method

CreateFeedSourceMember() public static method

Create a new FeedSourceMember object.
public static CreateFeedSourceMember ( global feedSourceMemberId, global feedId, global sourceId, global sourceTypeId, global createdBy, global createdDate ) : FeedSourceMember
feedSourceMemberId global Initial value of the FeedSourceMemberId property.
feedId global Initial value of the FeedId 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 FeedSourceMember
        public static FeedSourceMember CreateFeedSourceMember(global::System.Int32 feedSourceMemberId, global::System.Int32 feedId, global::System.Int32 sourceId, global::System.Int32 sourceTypeId, global::System.Int32 createdBy, global::System.DateTime createdDate)
        {
            FeedSourceMember feedSourceMember = new FeedSourceMember();
            feedSourceMember.FeedSourceMemberId = feedSourceMemberId;
            feedSourceMember.FeedId = feedId;
            feedSourceMember.SourceId = sourceId;
            feedSourceMember.SourceTypeId = sourceTypeId;
            feedSourceMember.CreatedBy = createdBy;
            feedSourceMember.CreatedDate = createdDate;
            return feedSourceMember;
        }