示例#1
0
 public CampaignService(ICampaignRepository cR, IClientScheduleRepository csR, IUnitOfWork unitOfWork)
 {
     this.CampaignsRepository      = cR;
     this.clientScheduleRepository = csR;
     this.unitOfWork = unitOfWork;
 }
示例#2
0
 public ClientScheduleService(IClientScheduleRepository csR, IClientScheduleMediaFilesListRepository csmfR, IUnitOfWork unitOfWork)
 {
     this.clientSchedulesRepository = csR;
     this.clientScheduleMediaFilesListRepository = csmfR;
     this.unitOfWork = unitOfWork;
 }