Ejemplo n.º 1
0
 public ActivityLogTypeController(
     IMapper mapper,
     IActivityLogTypeService activityLogTypeService)
 {
     _mapper = mapper;
     _activityLogTypeService = activityLogTypeService;
 }
Ejemplo n.º 2
0
 public ActivityLogService(IDbContext context, IActivityLogTypeService activityLogTypeService)
     : base(context)
 {
     _context = context;
     _activityLogTypeService = activityLogTypeService;
 }
Ejemplo n.º 3
0
 public ActivityLogService(
     ObjectDbContext dbContext,
     IActivityLogTypeService activityLogTypeService) : base(dbContext)
 {
     _activityLogTypeService = activityLogTypeService;
 }