Enroller.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace HRSYSTEMPROJECT
{
class Enroller : IEnroll
{
#region IEnroll Members
public String Enroll(String a,String b ,String c,String d,String e)
{
return a;
return b;
return c;
return d;
return e;
}
internal string[] Enroll()
{
throw new NotImplementedException();
}
#endregion
}
}
Interface IEnroll.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HRSYSTEMPROJECT
{
public interface IEnroll
{
String Enroll();
}
}
SPRINGHEEL 0 Newbie Poster
SPRINGHEEL 0 Newbie Poster
SPRINGHEEL 0 Newbie Poster
pritaeas 2,194 ¯\_(ツ)_/¯ Moderator Featured Poster
SPRINGHEEL 0 Newbie Poster
pritaeas 2,194 ¯\_(ツ)_/¯ Moderator Featured Poster
SPRINGHEEL 0 Newbie Poster
SPRINGHEEL 0 Newbie Poster
pritaeas 2,194 ¯\_(ツ)_/¯ Moderator Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.