コード例 #1
0
        public CrudeClientContactMethodModel CrudeClientContactMethodFetchByClientContactMethodId(System.Guid clientcontactmethodid)
        {
            CrudeClientContactMethodModel clientContactMethod =
                new CrudeClientContactMethodBusiness().FetchByClientContactMethodId(clientcontactmethodid);

            return(clientContactMethod);
        }
コード例 #2
0
        public IEnumerable <CrudeClientContactMethodModel> CrudeClientContactMethodFetchByContactMethodRcd(System.String contactmethodrcd)
        {
            List <CrudeClientContactMethodModel> clientContactMethod =
                new CrudeClientContactMethodBusiness().FetchByContactMethodRcd(contactmethodrcd);

            return(clientContactMethod);
        }
コード例 #3
0
        public IEnumerable <CrudeClientContactMethodModel> CrudeClientContactMethodFetchAll()
        {
            List <CrudeClientContactMethodModel> clientContactMethods =
                new CrudeClientContactMethodBusiness().FetchAll();

            return(clientContactMethods);
        }
コード例 #4
0
        public IEnumerable <CrudeClientContactMethodModel> CrudeClientContactMethodFetchByClientId(System.Guid clientid)
        {
            List <CrudeClientContactMethodModel> clientContactMethod =
                new CrudeClientContactMethodBusiness().FetchByClientId(clientid);

            return(clientContactMethod);
        }
コード例 #5
0
        public IEnumerable <CrudeClientContactMethodModel> CrudeClientContactMethodFetchAllWithLimit(
            string limit
            )
        {
            List <CrudeClientContactMethodModel> clientContactMethods =
                new CrudeClientContactMethodBusiness().FetchAllWithLimit(limit);

            return(clientContactMethods);
        }