Пример #1
0
 public FamilyService(
     ILogger <IFamilyRepository> logger,
     IFamilyRepository familyRepository,
     IApiFamilyRequestModelValidator familyModelValidator,
     IBOLFamilyMapper bolfamilyMapper,
     IDALFamilyMapper dalfamilyMapper,
     IBOLStudentMapper bolStudentMapper,
     IDALStudentMapper dalStudentMapper)
     : base(logger,
            familyRepository,
            familyModelValidator,
            bolfamilyMapper,
            dalfamilyMapper,
            bolStudentMapper,
            dalStudentMapper)
 {
 }
Пример #2
0
 public AbstractFamilyService(
     ILogger logger,
     IFamilyRepository familyRepository,
     IApiFamilyRequestModelValidator familyModelValidator,
     IBOLFamilyMapper bolFamilyMapper,
     IDALFamilyMapper dalFamilyMapper,
     IBOLStudentMapper bolStudentMapper,
     IDALStudentMapper dalStudentMapper)
     : base()
 {
     this.FamilyRepository     = familyRepository;
     this.FamilyModelValidator = familyModelValidator;
     this.BolFamilyMapper      = bolFamilyMapper;
     this.DalFamilyMapper      = dalFamilyMapper;
     this.BolStudentMapper     = bolStudentMapper;
     this.DalStudentMapper     = dalStudentMapper;
     this.logger = logger;
 }