internal static RestIntegrationAccount Create(Model model)
        {
            var entity = new RestIntegrationAccount();

            entity.Update(model);
            return(entity);
        }
 internal void Update(Model model)
 {
     model.Name = Name;
     model.Id   = Id;
 }