Example #1
0
 public static decimal LeaveCalculationBasedDOJ(DateTime dateofjoining, int Leavetype_id)
 {
     if (Leavetype_id == Constants.LEAVEID_TYPE_CL)
     {
         decimal DBCL    = LeaveRepo.GetYearleave(Constants.LEAVE_TYPE_CL);
         decimal Clleave = DBCL - dateofjoining.Month;
         if (dateofjoining.Day <= 15)
         {
             decimal CL = DBCL - dateofjoining.Month + 1;
             return(CL);
         }
         return(Clleave);
     }
     else if (Leavetype_id == Constants.LEAVEID_TYPE_EL)
     {
         decimal DBEL    = LeaveRepo.GetYearleave(Constants.LEAVE_TYPE_EL);
         decimal Elleave = 12 - dateofjoining.Month;
         DBEL = DBEL / 12;
         decimal EL = Elleave * (decimal)DBEL;
         if (dateofjoining.Day <= 15)
         {
             decimal Ell = 12 - dateofjoining.Month + 1;
             decimal E   = Math.Abs(Ell) * (decimal)DBEL;
             return(E);
         }
         return(EL);
     }
     else if (Leavetype_id == Constants.LEAVEID_TYPE_ML)
     {
         return(182);
     }
     else if (Leavetype_id == Constants.LEAVEID_TYPE_LOP)
     {
         return(0);
     }
     else if (Leavetype_id == Constants.LEAVEID_TYPE_WFH)
     {
         return(0);
     }
     else
     {
         return(-99);
     }
 }