SpringMvc.Models.POCO.LogInOutEvent.LogInOutEvent C# (CSharp) Method

LogInOutEvent() public method

public LogInOutEvent ( UserAccount account, String ipAddress, ActionType type ) : System
account UserAccount
ipAddress String
type ActionType
return System
        public LogInOutEvent(UserAccount account, String ipAddress, ActionType type)
        {
            this.UserAccount = account;
            this.IpAddress = ipAddress;
            this.GeneratedOn = DateTime.Now;
            this.Type = type;
        }

Same methods

LogInOutEvent::LogInOutEvent ( ) : System
LogInOutEvent