Ejemplo n.º 1
0
 public TeamAppService(IProfileBaseAppServiceCommon profileBaseAppServiceCommon
                       , ITeamDomainService teamDomainService
                       , IGamificationDomainService gamificationDomainService) : base(profileBaseAppServiceCommon)
 {
     this.teamDomainService         = teamDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }
Ejemplo n.º 2
0
 public TeamAppService(IMapper mapper
                       , IUnitOfWork unitOfWork
                       , ICacheService cacheService
                       , ITeamDomainService teamDomainService
                       , IProfileDomainService profileDomainService
                       , IGamificationDomainService gamificationDomainService) : base(mapper, unitOfWork, cacheService, profileDomainService)
 {
     this.teamDomainService         = teamDomainService;
     this.gamificationDomainService = gamificationDomainService;
 }