Exemplo n.º 1
0
 public ActivityLogsController(IActivityLogsService activityLogsService)
 {
     _activityLogsService = activityLogsService;
 }
Exemplo n.º 2
0
 public AuditAttribute()
 {
     this.activityLogsService = container.Resolve<IActivityLogsService>();
 }
Exemplo n.º 3
0
 public CustomerController(ICustomerService customerService, IActivityLogsService activityLogService)
 {
     _customerService = customerService;
     _activityLogService = activityLogService;
 }