예제 #1
0
 public SettingService()
 {
     this._repository = new SettingRepository();
     if (_repository.GetCount() == 0)
     {
         _repository.Add(new Setting()
         {
             CV = "", Profile = "", ProfilePhotoPath = "", About = ""
         });
     }
 }