Exemple #1
0
 public MediaStorageService(string storageDirPath, IMediaFileRepository mediaFileRepository, IClientScheduleMediaFilesListRepository csmfl, IUnitOfWork uow)
 {
     this.StorageDirPath             = storageDirPath;
     this.mediaFilesRepository       = mediaFileRepository;
     this.filesToSchedulesRepository = csmfl;
     this.unitOfWork = uow;
 }
 public ClientScheduleService(IClientScheduleRepository csR, IClientScheduleMediaFilesListRepository csmfR, IUnitOfWork unitOfWork)
 {
     this.clientSchedulesRepository = csR;
     this.clientScheduleMediaFilesListRepository = csmfR;
     this.unitOfWork = unitOfWork;
 }