示例#1
0
        public byte[] HandleApproveAppointment(string json)
        {
            ApproveAppointmentRequest res = JsonConvert.DeserializeObject <ApproveAppointmentRequest>(json);
            Tuple <bool, string>      ans = appointService.ApproveAppointment(res.Owner, res.Appointed, res.StoreID, res.Approval);
            string jsonAns = Seralize(new SuccessFailResponse(ans.Item1, ans.Item2));

            return(security.Encrypt(jsonAns));
        }