class Internal::Edfi::FamilyService < Internal::ApplicationService
  def initialize(school, family)
    @school = school
    @family = family
  end

  def call
    RestClient.patch(endpoint, {}.to_json, headers)
  rescue
  end

  private
    def endpoint
      "#{base_url}/EdFi/Family/#{@family.id}"
    end
end
