I'm searching for easy way to make an application in C# for the employee schedule and for now here is my solution :
SQL Table :
Employee : Employee Informations
EmployeeType : Employee Type (Cook, Bartender, etc)
Schedule : The work hours for a type (exemple : 10:00-14:00 , 18:00-22:00)
Absence When employees aren't available
And now I want to generate random work hour according to how many workers I need in what time.
My solutions for the generator is to get available employees for the day, get the number of employee types I need for a Hour and get a fill with a random employee that match.
Is that a good way to do it ? do you have any other solutions ?