コード例 #1
0
ファイル: ShopClientService.cs プロジェクト: synweb/rocms
        public int CreateClient(Client client)
        {
            var dataRec = Mapper.Map <Data.Models.Client>(client);
            int id      = _clientGateway.Insert(dataRec);

            return(id);
        }
コード例 #2
0
ファイル: ShopClientService.cs プロジェクト: synweb/rocms
        public void UpdateClientInfo(Client client)
        {
            var dataRec = Mapper.Map <Data.Models.Client>(client);

            _clientGateway.UpdateInfo(dataRec);
        }