db_AI-4/csharp/db_AI-4/GetMembers.cs

36 lines
734 B
C#
Raw Normal View History

2017-07-26 18:18:37 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace db_AI_4
{
public static class GetMembers
2017-07-26 18:18:37 +02:00
{
public static int member_id { get; set; }
public static string email_address { get; set; }
public static string password { get; set; }
public static int member_status_id { get; set; }
2017-07-26 18:18:37 +02:00
public static string MemberInfo
2017-07-26 18:18:37 +02:00
{
get
{
return $" {member_id} ({email_address}) {password} ";
2017-07-26 18:18:37 +02:00
}
}
public static string MemberID
{
get
{
return $"({email_address}) {member_id}";
}
}
2017-07-26 18:18:37 +02:00
}
}