Make paramameter more cute than your waifu >//<
# app/builders/date.rb
class Date
include SimpleBuilder
attributes :day, :string
attributes :month, :string
attributes :year, :integer
end
# main program
def main
user = User.find_by(name: 'iyan')
date = Date.new
.with_day('Senin')
.with_month('Mei')
.with_year(2018)
user.process_payroll_on(date)
end