1234567891011121314151617181920212223242526272829303132333435 |
-
- using CZFW.Framework.Interface;
- using CZFW.Framework.Model.Entity;
- namespace CZFW.Framework.Logic
- {
- public class SeoShareLogic : LogicBase<SeoShareEntity>, ISeoShare
- {
- public SeoShareEntity GetItemByMark(string mark)
- {
- return GetEntity(x => x.Mark == mark);
- }
- public SeoShareEntity GetItemByUrl(string url)
- {
- return GetEntity(x => x.Url == url);
- }
- }
- }
|