I have a structure and an interface, tell me how I can create an instance of this structure.
public struct Card { public long Number { get; set; } public decimal FeeAmount { get; set; } public DateTime Date { get; set; } } public interface IBank { IEnumerable<Card> ChargedFees(); } public class Bank : IBank { public IEnumerable<Bank> ChargedFees() { ***** } }