Ejemplo n.º 1
0
        public WebServiceLog(WebServiceLog obj)
        {
            log = new WebServiceLogDefinition();

            Instant    = obj.Instant;
            Duration   = obj.Duration;
            Name       = obj.Name;
            Method     = obj.Method;
            EspaceId   = obj.EspaceId;
            TenantId   = obj.TenantId;
            Client_IP  = obj.Client_IP;
            ExecutedBy = obj.ExecutedBy;
            ErrorId    = obj.ErrorId;
        }
Ejemplo n.º 2
0
        public WebServiceLog(DateTime instant, int duration, string name, string method, int espaceId, int tenantId, string client_ip, string executedBy, string errorId)
        {
            log = new WebServiceLogDefinition();

            Instant    = instant;
            Duration   = duration;
            Name       = name;
            Method     = method;
            EspaceId   = espaceId;
            TenantId   = tenantId;
            Client_IP  = client_ip;
            ExecutedBy = executedBy;
            ErrorId    = errorId;
        }
Ejemplo n.º 3
0
 public WebServiceLog()
 {
     log = new WebServiceLogDefinition();
 }