public HomeController(LoveCollectionAppService loveCollectionAppService)
 {
     this.loveCollectionAppService = loveCollectionAppService;
     if (string.IsNullOrWhiteSpace(DESKey))
     {
         DESKey = ConfigurationManager.GetSection("DESKey");
     }
 }
Exemple #2
0
 public LoveCollectionController(CollectionDBCotext collectionDBCotext, LoveCollectionAppService loveCollectionAppService)
 {
     _collectionDBCotext           = collectionDBCotext;
     this.loveCollectionAppService = loveCollectionAppService;
     if (string.IsNullOrWhiteSpace(DESKey))
     {
         DESKey = ConfigurationManager.GetSection("DESKey");
     }
 }