Skip to content

ORzazade/finding-next-salary-date-of-customers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

finding-next-salary-date-of-customers

Input data model

public class SalaryDateCalculationDTO
{ public int Day {get; set;} public int Week {get; set;}
public SalaryFrequency PaymentFrequency {get; set;}
}

#Enum public enum SalaryFrequency
{
SpecificDayofMonth, // nth day of month.

LastWorkingDayofMonth, // last working day of month

DayBeforeLastWorkingDay, // day before last working day of month

FirstWorkingdayofMonth, // first working day of month

FirstXDay, // first x day of month. ie. if day is 2, it means first tuesday of month

LastXDay, // last x day of month. ie. if day is 1, it means last monday of month

NthXDay, // nth x day of month. ie. if week is 2 and day is 4, it means second thursday of the month. Week property is used to specify which nth thursday day of month. Not nth week!

NthWeeksXDay // x day of nth week of month. ie. if week is 1 and day is 3, it means wednesday of first week of the month. Week property is used to specify the nth week of month.
}

About

To find the next salary date of customers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published