public CrudeBookingContactMethodModel CrudeBookingContactMethodFetchByBookingContactMethodId(System.Guid bookingcontactmethodid)
        {
            CrudeBookingContactMethodModel bookingContactMethod =
                new CrudeBookingContactMethodBusiness().FetchByBookingContactMethodId(bookingcontactmethodid);

            return(bookingContactMethod);
        }
        public IEnumerable <CrudeBookingContactMethodModel> CrudeBookingContactMethodFetchByContactMethodRcd(System.String contactmethodrcd)
        {
            List <CrudeBookingContactMethodModel> bookingContactMethod =
                new CrudeBookingContactMethodBusiness().FetchByContactMethodRcd(contactmethodrcd);

            return(bookingContactMethod);
        }
        public IEnumerable <CrudeBookingContactMethodModel> CrudeBookingContactMethodFetchAll()
        {
            List <CrudeBookingContactMethodModel> bookingContactMethods =
                new CrudeBookingContactMethodBusiness().FetchAll();

            return(bookingContactMethods);
        }
        public IEnumerable <CrudeBookingContactMethodModel> CrudeBookingContactMethodFetchByBookingId(System.Guid bookingid)
        {
            List <CrudeBookingContactMethodModel> bookingContactMethod =
                new CrudeBookingContactMethodBusiness().FetchByBookingId(bookingid);

            return(bookingContactMethod);
        }
        public IEnumerable <CrudeBookingContactMethodModel> CrudeBookingContactMethodFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeBookingContactMethodModel> bookingContactMethods =
                new CrudeBookingContactMethodBusiness().FetchAllWithLimit(limit);

            return(bookingContactMethods);
        }