Example #1
0
        public static string AddClient(Client entity)
        {
            try
            {
                _db.Add(entity);

                return("Ok");
            }
            catch (Exception e) {
                throw;
            }
        }