public PhotoService(IUnitOfWork uow, IRepository <DalPhoto> repository, ICategoryPhotoRepository categoryRepository) { this.uow = uow; this.photoRepository = repository; this.categoryRepository = categoryRepository; logger = GlobalLogger.Logger; }
public CategoryPhotoManager(ICategoryPhotoRepository iCategoryPhotoRepository) : base(iCategoryPhotoRepository) { _iCategoryPhotoRepository = iCategoryPhotoRepository; }
public CategoryPhotoService(IUnitOfWork uow, ICategoryPhotoRepository repository) { this.uow = uow; this.ctgrPhotoRepository = repository; logger = GlobalLogger.Logger; }