예제 #1
0
파일: Reply.cs 프로젝트: vijayamazon/ezbob
        }         // HasBucket

        public static bool HasEquifaxData(this Reply reply)
        {
            return(reply.Exists() && (reply.Equifax != null) && !string.IsNullOrWhiteSpace(reply.Equifax.RawResponse));
        }         // EquifaxData
예제 #2
0
파일: Reply.cs 프로젝트: vijayamazon/ezbob
        }         // EquifaxData

        public static bool HasEtl(this Reply reply)
        {
            return(reply.Exists() && (reply.Etl != null));
        } // HasEtl
예제 #3
0
파일: Reply.cs 프로젝트: vijayamazon/ezbob
        }         // HasModels

        public static bool HasBucket(this Reply reply)
        {
            return(reply.HasDecision() && (reply.Inference.Decision.Bucket != null));
        }         // HasBucket
예제 #4
0
파일: Reply.cs 프로젝트: vijayamazon/ezbob
        }         // HasDecision

        public static bool HasModels(this Reply reply)
        {
            return(reply.HasDecision() && (reply.Inference.Decision.Models != null));
        }         // HasModels
예제 #5
0
파일: Reply.cs 프로젝트: vijayamazon/ezbob
        }         // HasInference

        public static bool HasDecision(this Reply reply)
        {
            return(reply.HasInference() && (reply.Inference.Decision != null));
        }         // HasDecision
예제 #6
0
파일: Reply.cs 프로젝트: vijayamazon/ezbob
        }         // Exists

        public static bool HasInference(this Reply reply)
        {
            return(reply.Exists() && (reply.Inference != null));
        }         // HasInference
예제 #7
0
파일: Reply.cs 프로젝트: vijayamazon/ezbob
 public static bool Exists(this Reply reply)
 {
     return(reply != null);
 }         // Exists