public List<Employee> SelectEmployees()
 {
     List<Employee> list = new List<Employee>();
     Emp_BL bl = new Emp_BL();
     list = bl.SelectEmployess();
     return list;
 }
 public bool CreateEmployee(Employee emp)
 {
     Emp_BL bl = new Emp_BL();
     if (bl.CreateEmployee(emp))
     {
         return true;
     }
     else
     {
         return false;
     }
 }
 //[WebInvoke(UriTemplate ="Create",
 //  Method="GET",
 //    RequestFormat = WebMessageFormat.Json
 //    , ResponseFormat = WebMessageFormat.Json
 //    , BodyStyle = WebMessageBodyStyle.Bare)]
 public bool CreateEmployee(Employee Jemp)
 {
     JavaScriptSerializer objJSSerializer = new JavaScriptSerializer();
     //Employee emp = objJSSerializer.Deserialize<Employee>(Jemp);
     Emp_BL bl = new Emp_BL();
     if (bl.CreateEmployee(emp))
     {
         return true;
     }
     else
     {
         return false;
     }
 }