using System; using System.Collections; using NPetshop.Domain.Accounts; namespace NPetshop.Persistence.Interfaces.Accounts { /// /// Summary description for IAccountDao. /// public interface IAccountDao { Account GetAccount(string login); IList GetUsernameList(); Account GetAccount(string login, string password); void InsertAccount(Account account); void UpdateAccount(Account account); } }