Beispiel #1
0
        public CloudinaryService(IOptions <CloudinarySettings> config, TheraphosidaeContext context)
        {
            if (config.Value.CloudName != null && config.Value.ApiKey != null && config.Value.ApiKey != null)
            {
                var account = new Account(config.Value.CloudName, config.Value.ApiKey, config.Value.ApiSecret);
                _cloudinary = new Cloudinary(account);
            }

            _context = context;
        }
 public SpiderService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Beispiel #3
0
 public AnimalTaxonomyService(TheraphosidaeContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public ReportService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Beispiel #5
0
 public MediaService(TheraphosidaeContext context)
 {
     _context = context;
 }
 public ImageService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Beispiel #7
0
 public CommentService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Beispiel #8
0
 public CategoryService(TheraphosidaeContext context)
 {
     _context = context;
 }
 public HomeService(TheraphosidaeContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public TagService(TheraphosidaeContext context)
 {
     _context = context;
 }
 public ArticleService(TheraphosidaeContext context)
 {
     _context = context;
 }