Exemplo n.º 1
0
 public Route(int id, RouteSet routeSet, string name, string action, string controller, string pattern, bool?isIgnore, bool?isEnabled, int index, bool isSessionRoute, DateTime updated, DateTime created) : base(id, updated, created, false)
 {
     this._routeSet       = routeSet;
     this._name           = name;
     this._action         = action;
     this._controller     = controller;
     this._pattern        = pattern;
     this._isIgnore       = isIgnore;
     this._isEnabled      = isEnabled;
     this._index          = index;
     this._isSessionRoute = isSessionRoute;
 }
 public ApplicationRouteSetMap(int id, Application application, Service service, RouteSet routeSet, DateTime updated, DateTime created) : base(id, updated, created, false)
 {
     this._application = application;
     this._service     = service;
     this._routeSet    = routeSet;
 }