Example #1
0
 public AuditController(IAuditAppService service)
 {
     _service = service ?? throw new ArgumentNullException(nameof(service));
 }
Example #2
0
 public ApplicationServiceBase()
 {
     _auditAppService = ServiceLocator.Current.GetInstance <IAuditAppService>();
 }