Ejemplo n.º 1
0
 private BuildIncoherence ToClientModelBuildIncoherence(Data.Models.BuildIncoherence other)
 {
     return(new BuildIncoherence
     {
         Commit = other.Commit,
         Name = other.Name,
         Repository = other.Repository,
         Version = other.Version
     });
 }
Ejemplo n.º 2
0
        public BuildIncoherence(Data.Models.BuildIncoherence other)
        {
            if (other == null)
            {
                return;
            }

            Name       = other.Name;
            Version    = other.Version;
            Repository = other.Repository;
            Commit     = other.Commit;
        }