using System.Net.Mail;
namespace Softec.Solutions
{
public class SoftwareEngineer
{
public string JobDescription =>
@"Are you the one who people come to for help with code issues or performance problems?
Do you have a library of resources ready to use at a moment’s notice (if you don’t already know the answer)?
Do you take great pride in bug free releases with a cutting edge application? If so, check this out.
We have been challenged by our client to find the technical top 10 % in Denver to join their web team
that is comprised of cross functional geniuses who,
when they’re not talking smack to each other on who develops the cleanest test driven code,
are blowing the doors off their competition in not only ability but innovation and ingenuity.
They don’t want “What can we improve?” they want “What if?”
You will be part of a talented team of developers through full stack development initiatives
geared at faster delivery schedules with higher quality and smoother processes.
You will help design, develop, and maintain internal and external applications for an enterprise environment.
You will need to develop solutions for all tiers of the application;
framework, controls, middle-tier business components and database layer.";
public string ClientEnvironment => "casual dress code";
public bool MargaritasDaily => true;
public string Location => "cool LODO location";
public string[] RequiredSkills => new[] { "minimum 3 years", "C#", "ASP.NET", "Full stack", "WCF", "REST" };
public string Salary => "85,000 - 105,000";
public string Duration => "Permanent";
public SoftwareEngineer(string[] experience, string fromAddress, string pathToResume)
{
MailAddress from = new MailAddress(fromAddress);
MailAddress to = new MailAddress("sean.fordyce@" "softecinc.com");
MailMessage emailmessage = new MailMessage(from, to) { Body = string.Join(" ", experience) };
emailmessage.Attachments.Add(new Attachment(pathToResume));
SmtpClient smtpClient = new SmtpClient();
smtpClient.Send(emailmessage);
}
}
}
Why this company?
Our Client is a growing company, with flexible work hours, casual dress code, a fun atmosphere and located in a cool downtown location! You will have exposure to new technologies, working with a very collaborative team.