public HttpResponseMessage GetInfoByAdminAndCustClientID(int adminId, int custId)
        {
            ItemResponse <CustomerAccountingInfo> response = new ItemResponse <CustomerAccountingInfo>();

            response.Item = CustomerAccountingInfoService.GetInfoByAdminAndCustClientID(adminId, custId);
            return(Request.CreateResponse(response));
        }