using System;
public class Program
{
/* Please complete the following assignments - the work should not take more than 60 minutes to complete
* Once completed please click the 'Share' button above and send us back the share link to review the submission,
please copy a backup of the completed assignment onto your computer in case an issue occurs with the link to ensure the work is not accidentally lost
* If the assignment deems it neccesary, you can create multiple classes within the same file
* Feel free to complete the assignment in the IDE of your choice and then simple paste and share the results once completed.
* We aim to get back to all candidates within 1-2 business days after submitting - a successful candidate will receive a request for a final interview (No code assignments are completed during the interview unless excplicitly told beforehand)
********* assingments below ***************
1. given a standard UK registration (ie AB67DFE), make a function or method that returns the earliest year that the vehicle was registered from 2010 onwards
2. With the CSV contents below, return a list of 'Customers' with their corresponding order
*/
public const string CustomerCSVContent =
@"CustomerID,First Name,Surname
1,Bob,Bobson
2,Carl,Carlson
3,Devin,Devinson
4,Elis,Elite
5,Joy,Friday
6,Alice,Appleton
7,Frank,Friday
8,Lilly,Lakashire
10,Troy,Tesla
11,Lankishire,Police
9,Lola,Lilly
12,Sally,Salmon";
public const string OrderCSVContent =
@"OrderID,Vehicle,CustomerID
1,ABC123,1
2,DF67PPE,14
3,DL19123,12
4,ABC222,2
5,FGE67PNO,3
6,CC12TLU,4
7,AP88NEW,5
8,LA12POQ,12
9,LL19TNZ,6";
public static void Main()
}