SakilaBusinessLogic.my_aspnet_sessions.Createmy_aspnet_sessions C# (CSharp) Метод

Createmy_aspnet_sessions() публичный статический Метод

Create a new my_aspnet_sessions object.
public static Createmy_aspnet_sessions ( global sessionId, global applicationId, global created, global expires, global lockDate, global lockId, global timeout, global locked, global flags ) : my_aspnet_sessions
sessionId global Initial value of the SessionId property.
applicationId global Initial value of the ApplicationId property.
created global Initial value of the Created property.
expires global Initial value of the Expires property.
lockDate global Initial value of the LockDate property.
lockId global Initial value of the LockId property.
timeout global Initial value of the Timeout property.
locked global Initial value of the Locked property.
flags global Initial value of the Flags property.
Результат my_aspnet_sessions
        public static my_aspnet_sessions Createmy_aspnet_sessions(global::System.String sessionId, global::System.Int32 applicationId, global::System.DateTime created, global::System.DateTime expires, global::System.DateTime lockDate, global::System.Int32 lockId, global::System.Int32 timeout, global::System.Boolean locked, global::System.Int32 flags)
        {
            my_aspnet_sessions my_aspnet_sessions = new my_aspnet_sessions();
            my_aspnet_sessions.SessionId = sessionId;
            my_aspnet_sessions.ApplicationId = applicationId;
            my_aspnet_sessions.Created = created;
            my_aspnet_sessions.Expires = expires;
            my_aspnet_sessions.LockDate = lockDate;
            my_aspnet_sessions.LockId = lockId;
            my_aspnet_sessions.Timeout = timeout;
            my_aspnet_sessions.Locked = locked;
            my_aspnet_sessions.Flags = flags;
            return my_aspnet_sessions;
        }