Esempio n. 1
0
        public async Task InsertShelfLocationFormat(ShelfLocationFormat shelfLocationFormat)
        {
            if (shelfLocationFormat == null)
            {
                throw new ArgumentNullException(nameof(shelfLocationFormat));
            }

            await _shelfLocationFormatRepository.InsertAsync(shelfLocationFormat);
        }
Esempio n. 2
0
        public virtual void DeleteShelfLocationFormat(ShelfLocationFormat shelfLocationFormat)
        {
            if (shelfLocationFormat == null)
            {
                throw new ArgumentNullException(nameof(shelfLocationFormat));
            }

            _shelfLocationFormatRepository.Delete(shelfLocationFormat);
        }