Exemplo n.º 1
0
        public HttpResponseMessage GetIdentificationTypeForDD(HttpRequestMessage reqObject)
        {
            var List_Customer_Identification = _IIdentificationTypeService.GetIdentificationTypeForDD();

            if (List_Customer_Identification != null)
            {
                _serviceResponse = _IDataManipulation.ResopnseWhenDataFound(List_Customer_Identification, "information has been fetched successfully");
            }
            else
            {
                _serviceResponse = _IDataManipulation.ResopnseWhenDataNotFound("Identification Not Found...");
            }
            _response = _IDataManipulation.CreateResponse(_serviceResponse, reqObject);
            return(_response);
        }