12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- namespace MTWorkHR.Core.Entities
- {
- public class SettingLog : Log
- {
- public SettingLog() : base()
- {
- }
- public SettingLog(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)
- {
- //
- }
- }
- }
|