public string Post([FromBody] Customers value) { if (value != null) { customerBL.Register(value); } return("success"); }