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

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

            _shelfLocationFormatRepository.Delete(shelfLocationFormat);
        }