Advertisement
Guest User

PangkatController

a guest
Jul 13th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.30 KB | None | 0 0
  1. // {0} iku teko tahun ta?
  2.  
  3. public JsonResult NaikPangkat(Nullable<int> tahun)
  4. {
  5.     tahun = tahun ?? System.DateTime.Now.Year;
  6.  
  7.     db.Database.SqlQuery<EmployeeReportVM>("Select max(b.tmt_date) from Emp_Employee_Golru b where a.Employee_Id = b.Employee_Id and (Year(b.tmt_date) + 2) = {0}", tahun);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement