public IHttpActionResult AddCustomer(Customer customer) { BLCustomer blCustomer = new BLCustomer(); string result = blCustomer.AddCustomer(customer); return(Content(HttpStatusCode.OK, result)); }