123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- namespace MTWorkHR.Core.Entities
- {
- public class FileLog : Log
- {
- public FileLog() : base()
- {
- }
- public FileLog(string Method
- , string QueryString
- , string Input
- , DateTime CreateDate
- , string CreateUser
- , string ServerIP
- , string Channel
- , string UserIP
- , string ServiceResponseTimeInSeconds
- , string ErrorCode
- , string ErrorDescription
- , string InnerException
- ) : base(Method
- , QueryString
- , Input
- , CreateDate
- , CreateUser
- , ServerIP
- , Channel
- , UserIP
- , ServiceResponseTimeInSeconds
- , ErrorCode
- , ErrorDescription
- , InnerException)
- {
- //
- }
- }
- }
|