Esempio n. 1
0
        public async Task <bool> Add(SynchronousDb synchronousDb)
        {
            bool result = false;
            await repository.Add(synchronousDb, (item, error) =>
            {
                if (error != null)
                {
                    result = true;
                }
            });

            return(result);
        }