Ejemplo n.º 1
0
 public CourtGroupCodeService(
     ILogger <CourtGroupCodeService> _logger,
     IRepository _repo,
     IRelationManyToManyDateService _relationService)
 {
     logger          = _logger;
     repo            = _repo;
     relationService = _relationService;
 }
 public CourtGroupLawUnitService(
     ILogger <CourtGroupLawUnitService> _logger,
     IRepository _repo,
     ICommonService _commonService,
     IRelationManyToManyDateService _relationService)
 {
     logger          = _logger;
     repo            = _repo;
     commonService   = _commonService;
     relationService = _relationService;
 }
Ejemplo n.º 3
0
 public CourtLawUnitService(
     ILogger <CourtLawUnitService> _logger,
     ICommonService _commonService,
     IRepository _repo,
     IUserContext _userContext,
     IRelationManyToManyDateService _relationService)
 {
     logger          = _logger;
     repo            = _repo;
     userContext     = _userContext;
     commonService   = _commonService;
     relationService = _relationService;
 }