Exemplo n.º 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;
        }
Exemplo n.º 2
0
 public SpiderService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Exemplo n.º 3
0
 public AnimalTaxonomyService(TheraphosidaeContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public ReportService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Exemplo n.º 5
0
 public MediaService(TheraphosidaeContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public ImageService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Exemplo n.º 7
0
 public CommentService(TheraphosidaeContext theraphosidaeContext)
 {
     _theraphosidaeContext = theraphosidaeContext;
 }
Exemplo n.º 8
0
 public CategoryService(TheraphosidaeContext context)
 {
     _context = context;
 }
Exemplo n.º 9
0
 public HomeService(TheraphosidaeContext context)
 {
     _context = context;
 }
Exemplo n.º 10
0
 public TagService(TheraphosidaeContext context)
 {
     _context = context;
 }
Exemplo n.º 11
0
 public ArticleService(TheraphosidaeContext context)
 {
     _context = context;
 }