Skip to content

Instantly share code, notes, and snippets.

@mhkoca
Created August 10, 2017 11:07
Show Gist options
  • Save mhkoca/ab2c03103fc2cc0a7af9702038812864 to your computer and use it in GitHub Desktop.
Save mhkoca/ab2c03103fc2cc0a7af9702038812864 to your computer and use it in GitHub Desktop.
private void RaporHazirla(int raporTuru)
{
if (raporTuru == 1)
{
SubeBazliGunlukIslemRaporu();
}
else if (raporTuru == 2)
{
PersonelBazliGunlukIslemRaporu();
}
else if (raporTuru == 3)
{
MusteriBazliGunlukIslemRaporu();
}
else if (raporTuru == 4)
{
ToplamGunlukIslemRaporu();
}
else if (raporTuru == 5)
{
MessageBox.Show("Bu rapor 01.01.2015 tarihinden itibaren verilememektedir.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment