Example #1
0
 public OmiServiceBase(IOmiDbContext context, IMapper mapper, ICurrentUserService currentUser, IDateTime serverTime)
 {
     _logger      = LogManager.GetLogger(this.GetType());
     _context     = context;
     _mapper      = mapper;
     _currentUser = currentUser;
     _serverTime  = serverTime;
 }
Example #2
0
 public EmployeeService(IOmiDbContext context, IMapper mapper, ICurrentUserService currentUser, IDateTime serverTime) : base(context, mapper, currentUser, serverTime)
 {
 }