public IEnumerable<Contact> FindByUser(long userid)
        {
            Contact ct = new Contact();
            List<Contact> ctlist=new List<Contact>();
            int count=10;

            while (count >= 0)
            {
                ct.EmailContact = "*****@*****.**";
                ct.CuisineType = "Indian";
                ct.KitchenName = "kanja kitchen";
                ctlist.Add(ct);
                count = count - 1;
            }
            return ctlist;
        }
 public void Update(Contact mt)
 {
     throw new NotImplementedException();
 }
 public void Add(Contact UserSetting)
 {
     throw new NotImplementedException();
 }