コード例 #1
0
 public KhachHang CreateCustomer([FromBody] KhachHang model)
 {
     _customerBusiness.CreateCustomer(model);
     return(model);
 }
コード例 #2
0
 public KhachHang CreateCustomer([FromBody] KhachHang model)
 {
     model.makh = Guid.NewGuid().ToString();
     _customerBusiness.CreateCustomer(model);
     return(model);
 }