Пример #1
0
 public bool SaveSliderDefaultSettings(List <Setting> setting)
 {
     try
     {
         SettingGetway settings = new SettingGetway();
         return(settings.SaveSliderDefaultSettings(setting));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #2
0
 public bool UpdateSliderImageSettings(Setting setting)
 {
     try
     {
         SettingGetway settings = new SettingGetway();
         return(settings.UpdateSliderImageSettings(setting));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #3
0
 public bool SaveSliderSettings(Setting setting)
 {
     try
     {
         SettingGetway settings = new SettingGetway();
         return(settings.SaveSliderSettings(setting));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #4
0
 public bool DeleteSliderImageSettings(int id)
 {
     try
     {
         SettingGetway settings = new SettingGetway();
         return(settings.DeleteSliderImageSettings(id));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #5
0
 public Setting GetSliderImageById(int id)
 {
     try
     {
         SettingGetway settings = new SettingGetway();
         return(settings.GetSliderImageById(id));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #6
0
 public List <Setting> GetAllSliderSettingsById(int userId)
 {
     try
     {
         SettingGetway settings = new SettingGetway();
         return(settings.GetAllSliderSettingsById(userId));
     }
     catch (Exception)
     {
         throw;
     }
 }
Пример #7
0
 public List <Setting> GetAllBasicSettings()
 {
     try
     {
         SettingGetway settings = new SettingGetway();
         return(settings.GetAllBasicSettings());
     }
     catch (Exception)
     {
         throw;
     }
 }