public ActionResult Get(int id)
        {
            var customer = new BLL.Services.Customer.Customer(975433);

            return(Ok(customer));
            //return Newtonsoft.Json.JsonConvert.SerializeObject(customer);
        }
        public ActionResult <string> Get()
        {
            var customer = new BLL.Services.Customer.Customer(975433);

            return(Ok(customer));
        }