Ejemplo n.º 1
0
        public AppSyncProfile GetDefaultProfile(string name)
        {
            var qualityProfile = new AppSyncProfile
            {
                Name = name,
                EnableAutomaticSearch   = true,
                EnableInteractiveSearch = true,
                EnableRss = true
            };

            return(qualityProfile);
        }
Ejemplo n.º 2
0
 public void Update(AppSyncProfile profile)
 {
     _profileRepository.Update(profile);
 }
Ejemplo n.º 3
0
 public AppSyncProfile Add(AppSyncProfile profile)
 {
     return(_profileRepository.Insert(profile));
 }