25 lines
681 B
C#
25 lines
681 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ssgrestserver
|
|
{
|
|
class 기존상품수량 : ARequestObject
|
|
{
|
|
protected override string startUpdateWork()
|
|
{
|
|
|
|
mAccessableDictionary = DataCenter.getInstance().getData(DataCenter.관리중인데이터들배열.최근받은상품수량);
|
|
|
|
if (!mAccessableDictionary.ContainsKey(m채널이름))
|
|
{
|
|
return "서버에 없는 정보 - 상품데이터";
|
|
}
|
|
|
|
return mAccessableDictionary[m채널이름].ToString(Newtonsoft.Json.Formatting.None);
|
|
}
|
|
}
|
|
}
|