public static bool AddLeave(LeaveEntity leave) { bool added = false; try { added = LeaveDAL.AddLeave(leave); } catch (LeaveException) { throw; } return(added); }
public int AddLeave(LeaveModel model) { return(dal.AddLeave(model)); }