Example #1
0
 public Service(int id, Guid guid, Application application, Product product, Merchant merchant, ServiceStatus serviceStatus, ServiceType serviceType, UserSessionType userSessionType, Country fallbackCountry, Language fallbackLanguage, ServiceConfigurationEntry serviceConfiguration, Template template, string name, string description, DateTime updated, DateTime created) : base(id, updated, created, false)
 {
     this._guid                 = guid;
     this._application          = application;
     this._product              = product;
     this._merchant             = merchant;
     this._serviceStatus        = serviceStatus;
     this._serviceType          = serviceType;
     this._userSessionType      = userSessionType;
     this._fallbackCountry      = fallbackCountry;
     this._fallbackLanguage     = fallbackLanguage;
     this._serviceConfiguration = serviceConfiguration;
     this._template             = template;
     this._name                 = name;
     this._description          = description;
 }
Example #2
0
 public UserSession(int id, Guid guid, UserSessionType userSessionType, Service service, Domain domain, User user, Country country, Language language, MobileOperator mobileOperator, int?trackingID, string iPAddress, string userAgent, string entranceUrl, string refferer, bool hasVerifiedAge, DateTime validUntil, DateTime updated, DateTime created) : base(id, updated, created, false)
 {
     this._guid            = guid;
     this._userSessionType = userSessionType;
     this._service         = service;
     this._domain          = domain;
     this._user            = user;
     this._country         = country;
     this._language        = language;
     this._mobileOperator  = mobileOperator;
     this._trackingID      = trackingID;
     this._iPAddress       = iPAddress;
     this._userAgent       = userAgent;
     this._entranceUrl     = entranceUrl;
     this._refferer        = refferer;
     this._hasVerifiedAge  = hasVerifiedAge;
     this._validUntil      = validUntil;
 }