コード例 #1
0
ファイル: ShopDomain.cs プロジェクト: shachafn/wsep192
        public void AddShopManager(Shop shop, Guid userGuid, Guid newManagaerGuid, List <bool> priviliges)
        {
            var newManager = new ShopOwner(newManagaerGuid, userGuid, shop.Guid, priviliges);

            shop.AddShopManager(newManager);
            _unitOfWork.ShopRepository.Update(shop);
        }