/// <summary>
 /// Verilen Entity için Liste döndürür.
 /// </summary>
 /// <returns></returns>
 public virtual List <T> GetList()
 {
     try
     {
         return(_repository.GetList());
     }
     catch (Exception e)
     {
         throw e;
     }
 }