Exemple #1
0
        public IRestResponse AddDMHoSoKemTheo(DM_HoSoKemTheo item)
        {
            var request = new RestRequest("QT/AddDMHoSoKemTheo", Method.POST)
            {
                RequestFormat  = DataFormat.Json,
                JsonSerializer = new JsonSerializer()
            };

            request.AddBody(item);
            return(Execute(request));
        }
Exemple #2
0
 public string AddDMHoSoKemTheo(DM_HoSoKemTheo item)
 {
     return(_hoSoKemTheoMapRepository.AddDMHoSoKemTheo(item));
 }