コード例 #1
0
ファイル: ModelService.cs プロジェクト: hungds99/IOTTasks
        public async Task <IEnumerable <Model> > AddManyModelsAsync(IEnumerable <Model> models)
        {
            IEnumerable <Model> modelsAdded;

            try
            {
                modelsAdded = await _modelRepository.AddMany(models);
            }catch (Exception e)
            {
                throw e;
            }
            return(modelsAdded);
        }