예제 #1
0
 public ActivityLogTypeController(
     IMapper mapper,
     IActivityLogTypeService activityLogTypeService)
 {
     _mapper = mapper;
     _activityLogTypeService = activityLogTypeService;
 }
예제 #2
0
 public ActivityLogService(IDbContext context, IActivityLogTypeService activityLogTypeService)
     : base(context)
 {
     _context = context;
     _activityLogTypeService = activityLogTypeService;
 }
예제 #3
0
 public ActivityLogService(
     ObjectDbContext dbContext,
     IActivityLogTypeService activityLogTypeService) : base(dbContext)
 {
     _activityLogTypeService = activityLogTypeService;
 }