public KhachHang CreateCustomer([FromBody] KhachHang model) { _customerBusiness.CreateCustomer(model); return(model); }
public KhachHang CreateCustomer([FromBody] KhachHang model) { model.makh = Guid.NewGuid().ToString(); _customerBusiness.CreateCustomer(model); return(model); }