From efbf8664836ff374c268f58200eed356340670a2 Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Tue, 24 Mar 2015 14:44:43 +0300 Subject: [PATCH] Update ApiClient.cs --- RetailCrm/ApiClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RetailCrm/ApiClient.cs b/RetailCrm/ApiClient.cs index d109385..dce708a 100644 --- a/RetailCrm/ApiClient.cs +++ b/RetailCrm/ApiClient.cs @@ -167,11 +167,11 @@ namespace RetailCrm if (startDate != null) { - parameters.Add("startDate", startDate.Value.ToString("yyy-MM-dd HH:mm:ss")); + parameters.Add("startDate", startDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); } if (endDate != null) { - parameters.Add("endDate", endDate.Value.ToString("yyy-MM-dd HH:mm:ss")); + parameters.Add("endDate", endDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); } if (limit > 0) {