Saimoe.Models.Profile.CreateProfile C# (CSharp) Method

CreateProfile() public static method

Create a new Profile object.
public static CreateProfile ( global id, global interest, global characteristic, global actingCute, global tagline, global joinedDate ) : Profile
id global Initial value of the Id property.
interest global Initial value of the Interest property.
characteristic global Initial value of the Characteristic property.
actingCute global Initial value of the ActingCute property.
tagline global Initial value of the Tagline property.
joinedDate global Initial value of the JoinedDate property.
return Profile
        public static Profile CreateProfile(global::System.Int32 id, global::System.String interest, global::System.String characteristic, global::System.String actingCute, global::System.String tagline, global::System.DateTime joinedDate)
        {
            Profile profile = new Profile();
            profile.Id = id;
            profile.Interest = interest;
            profile.Characteristic = characteristic;
            profile.ActingCute = actingCute;
            profile.Tagline = tagline;
            profile.JoinedDate = joinedDate;
            return profile;
        }