Example #1
0
 public void GetAll()
 {
     //_crossCuttingsConcernsFactory.CreateLogger().Log("ss");
     _logging.Log("xmö");
     _caching.Cache("cfccf");
     Console.WriteLine("Products are listed.");
 }
Example #2
0
        public void GetAll()
        {
            _logging.Log("loglaa");
            _caching.Cache("data");

            Console.WriteLine("müşterileri listedik");
        }
Example #3
0
 public void GetAll()
 {
     Console.WriteLine("Products Listed!");
     //_crossCuttingConcernsFactory.CreateLogging().Log();
     _logging.Log();
     _caching.Cache();
 }
Example #4
0
 public void GetAll()
 {
     // Constructor'da hazır hale getirdiğimiz sistemleri buradan kullanabiliriz.
     // Verilen verileri işlemelerini sağlayabiliriz.
     _logging.Log("Logged");
     _caching.Cache("Data");
     Console.WriteLine("Products listed!");
 }
 public void GetAll()
 {
     _logging.Log("Logged");
     _caching.Cache("Data");
     Console.WriteLine("Products Listed!");
 }
Example #6
0
 public void GetAll()
 {
     _logging.Log("log message");
     _caching.Cache("data");
     Console.WriteLine("Products has been listed.!");
 }
Example #7
0
 public void GetAll()
 {
     _logging.Log("string");
     _caching.Cache("data");
     System.Console.WriteLine("Products listed");
 }
Example #8
0
 public void GetAll()
 {
     _logging.Log("logged");
     _cachehing.Cache("data");
     Console.WriteLine("Product Listed");
 }
 public void GetAll()
 {
     _logging.Log();
     _caching.Cache();
     Console.WriteLine("Products listed!");
 }
Example #10
0
 public void Add()
 {
     Console.WriteLine("Added!");
     _logging.Log();
     _caching.Cache();
 }
Example #11
0
 public void GetAll()
 {
     _logging.Log("Logged");
     _caching.Cache("Data");
     Console.WriteLine("Ürün listesi");
 }
Example #12
0
 public void GetAll()
 {
     logging.Log("Logged");
     caching.Cache("Cache");
     Console.WriteLine("Products Listed");
 }
 public void GetAll() //buraya bütün iş katmanında her şeyi çağırdıktan sonra methodları çalıştırabiliriz
 {
     _logging.Log("Logged!");
     _caching.Cache("Data");
     Console.WriteLine("Products Listed!");
 }
Example #14
0
 public void GetAll()
 {
     logging.Log();
     caching.Cache();
     Console.WriteLine("All products are fetched");
 }