public override string Validate()
        {
            if (!string.IsNullOrWhiteSpace(_id))
            {
                if (!_projectConfigsStorage.IsIdExsit(_id))
                {
                    return(CoreTextResources.ProjectIdIsNotExistErrorMessage.Replace("[Id]", _id));
                }
            }

            return("");
        }
Example #2
0
 public bool IsIdExsit(string id)
 {
     return(_projectConfigsStorage.IsIdExsit(id));
 }