public PhotoAwardsBll(IUserDal usersDAL, IAwardDal awardsDAL, IPhotographerDal photographerDal, IJuryDal juryDal, IPhotoDal photoDal) { _usersDal = usersDAL; _awardsDal = awardsDAL; _photographersDal = photographerDal; _juryDal = juryDal; _photoDal = photoDal; }
public PhotoManager(IOptions <CloudinarySettings> cloudinarySettings, IMapper mapper, IPhotoDal photoDal, IHttpContextAccessor httpContext, IUserDal userDal) { this.userDal = userDal; this.httpContext = httpContext; this.photoDal = photoDal; this.mapper = mapper; this.cloudinarySettings = cloudinarySettings; Account acc = new Account( cloudinarySettings.Value.CloudName, cloudinarySettings.Value.ApiKey, cloudinarySettings.Value.ApiSecret ); _cloudinary = new Cloudinary(acc); }
public CarImageManager(IPhotoDal photoDal) { _photoDal = photoDal; }
public PhotoManager(IPhotoDal photoDal) { _photoDal = photoDal; }
public PhotoService(IPhotoDal photoDal) { _photoDal = photoDal; }
public PhotoManager(IPhotoDal photoDal) { this.photoDal = photoDal; }