Exemplo n.º 1
0
        public string CheckClubLeave(FormCollection collection)
        {
            string result   = string.Empty;
            string fromDate = collection["fromDate"].ToString();
            string toDate   = collection["toDate"].ToString();

            result = _objSP.CheckClubLeave(fromDate, toDate, collection["leaveTypeCode"].ToString(), collection["userLeaveTypeCode"].ToString());
            return(result);
        }