2020-10-14 15:03:25 +00:00
|
|
|
|
using COA.EnterpriseServices.DataAccess.Entities;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace COA.EnterpriseServices.DataAccess.Helpers
|
|
|
|
|
{
|
|
|
|
|
public class ClientHelper : BaseHelper<Client>
|
|
|
|
|
{
|
|
|
|
|
public ICollection<Client> FindByEmail(string email)
|
|
|
|
|
{
|
2020-10-14 16:02:05 +00:00
|
|
|
|
return DataAccessManager.Invoke(d => d.Get(c => c.Email.Equals(email)));
|
2020-10-14 15:03:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|